Skip to content

Commit 03b6005

Browse files
authored
add method set_visible() (#40)
1 parent 6bcf9e1 commit 03b6005

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
},
1212
"license": "MIT",
1313
"dependencies": {
14-
"@abaplint/cli": "^2.113.91",
15-
"@abaplint/runtime": "^2.10.23",
16-
"@abaplint/database-sqlite": "^2.10.20",
17-
"@abaplint/transpiler-cli": "^2.10.23"
14+
"@abaplint/cli": "^2.113.104",
15+
"@abaplint/runtime": "^2.10.25",
16+
"@abaplint/database-sqlite": "^2.10.24",
17+
"@abaplint/transpiler-cli": "^2.10.25"
1818
}
1919
}

src/salv/cl_salv_column.clas.abap

+5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ CLASS cl_salv_column DEFINITION PUBLIC.
88
METHODS set_sign IMPORTING value TYPE any OPTIONAL.
99
METHODS set_optimized IMPORTING value TYPE abap_bool DEFAULT abap_true.
1010
METHODS set_alignment IMPORTING svalue TYPE any OPTIONAL.
11+
METHODS set_visible IMPORTING value TYPE abap_bool.
1112
ENDCLASS.
1213

1314
CLASS cl_salv_column IMPLEMENTATION.
15+
METHOD set_visible.
16+
ASSERT 1 = 'todo'.
17+
ENDMETHOD.
18+
1419
METHOD set_alignment.
1520
ASSERT 1 = 'todo'.
1621
ENDMETHOD.

0 commit comments

Comments
 (0)