Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add method set_optimized #28

Merged
merged 1 commit into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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