Commit f49c39f 1 parent bd57549 commit f49c39f Copy full SHA for f49c39f
File tree 3 files changed +10
-1
lines changed
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 17
17
] ,
18
18
"rules" : {
19
19
"check_include" : true ,
20
+ "align_pseudo_comments" : true ,
21
+ "invalid_table_index" : true ,
22
+ "no_prefixes" : false ,
23
+ "prefer_pragmas" : true ,
20
24
"uncaught_exception" : true ,
21
25
"cds_legacy_view" : true ,
22
26
"expand_macros" : true ,
Original file line number Diff line number Diff line change 11
11
},
12
12
"license" : " MIT" ,
13
13
"dependencies" : {
14
- "@abaplint/cli" : " ^2.107.4 " ,
14
+ "@abaplint/cli" : " ^2.108.2 " ,
15
15
"@abaplint/runtime" : " ^2.8.24" ,
16
16
"@abaplint/database-sqlite" : " ^2.8.0" ,
17
17
"@abaplint/transpiler-cli" : " ^2.8.24"
Original file line number Diff line number Diff line change @@ -6,9 +6,14 @@ CLASS cl_salv_column DEFINITION PUBLIC.
6
6
METHODS set_long_text IMPORTING value TYPE string .
7
7
METHODS set_output_length IMPORTING value TYPE any .
8
8
METHODS set_sign IMPORTING value TYPE any OPTIONAL .
9
+ METHODS set_optimized IMPORTING value TYPE abap_bool DEFAULT abap_true .
9
10
ENDCLASS .
10
11
11
12
CLASS cl_salv_column IMPLEMENTATION .
13
+ METHOD set_optimized .
14
+ ASSERT 1 = 'todo' .
15
+ ENDMETHOD .
16
+
12
17
METHOD set_technical .
13
18
ASSERT 1 = 'todo' .
14
19
ENDMETHOD .
You can’t perform that action at this time.
0 commit comments