Skip to content

Commit f49c39f

Browse files
authored
add method set_optimized (#28)
1 parent bd57549 commit f49c39f

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

abaplint.jsonc

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
],
1818
"rules": {
1919
"check_include": true,
20+
"align_pseudo_comments": true,
21+
"invalid_table_index": true,
22+
"no_prefixes": false,
23+
"prefer_pragmas": true,
2024
"uncaught_exception": true,
2125
"cds_legacy_view": true,
2226
"expand_macros": true,

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"license": "MIT",
1313
"dependencies": {
14-
"@abaplint/cli": "^2.107.4",
14+
"@abaplint/cli": "^2.108.2",
1515
"@abaplint/runtime": "^2.8.24",
1616
"@abaplint/database-sqlite": "^2.8.0",
1717
"@abaplint/transpiler-cli": "^2.8.24"

src/salv/cl_salv_column.clas.abap

+5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ CLASS cl_salv_column DEFINITION PUBLIC.
66
METHODS set_long_text IMPORTING value TYPE string.
77
METHODS set_output_length IMPORTING value TYPE any.
88
METHODS set_sign IMPORTING value TYPE any OPTIONAL.
9+
METHODS set_optimized IMPORTING value TYPE abap_bool DEFAULT abap_true.
910
ENDCLASS.
1011

1112
CLASS cl_salv_column IMPLEMENTATION.
13+
METHOD set_optimized.
14+
ASSERT 1 = 'todo'.
15+
ENDMETHOD.
16+
1217
METHOD set_technical.
1318
ASSERT 1 = 'todo'.
1419
ENDMETHOD.

0 commit comments

Comments
 (0)