Skip to content

Commit

Permalink
add method set_optimized (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp authored May 11, 2024
1 parent bd57549 commit f49c39f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions abaplint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
],
"rules": {
"check_include": true,
"align_pseudo_comments": true,
"invalid_table_index": true,
"no_prefixes": false,
"prefer_pragmas": true,
"uncaught_exception": true,
"cds_legacy_view": true,
"expand_macros": true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.107.4",
"@abaplint/cli": "^2.108.2",
"@abaplint/runtime": "^2.8.24",
"@abaplint/database-sqlite": "^2.8.0",
"@abaplint/transpiler-cli": "^2.8.24"
Expand Down
5 changes: 5 additions & 0 deletions src/salv/cl_salv_column.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@ CLASS cl_salv_column DEFINITION PUBLIC.
METHODS set_long_text IMPORTING value TYPE string.
METHODS set_output_length IMPORTING value TYPE any.
METHODS set_sign IMPORTING value TYPE any OPTIONAL.
METHODS set_optimized IMPORTING value TYPE abap_bool DEFAULT abap_true.
ENDCLASS.

CLASS cl_salv_column IMPLEMENTATION.
METHOD set_optimized.
ASSERT 1 = 'todo'.
ENDMETHOD.

METHOD set_technical.
ASSERT 1 = 'todo'.
ENDMETHOD.
Expand Down

0 comments on commit f49c39f

Please sign in to comment.