Skip to content
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
11 changes: 10 additions & 1 deletion abaplint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,16 @@
"check_ddic": true,
"implement_methods": true,
"indentation": true,
"keyword_case": true,
"keyword_case": {
"style": "upper",
"ignoreExceptions": false,
"ignoreLowerClassImplmentationStatement": false,
"ignoreGlobalClassDefinition": false,
"ignoreGlobalInterface": false,
"ignoreFunctionModuleName": false,
"ignoreGlobalClassBoundaries": false,
"ignoreKeywords": []
},
"when_others_last": true,
"newline_between_methods": true,
"avoid_use": {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.113.176",
"@abaplint/runtime": "^2.11.34",
"@abaplint/cli": "^2.113.188",
"@abaplint/runtime": "^2.11.62",
"@abaplint/database-sqlite": "^2.11.0",
"@abaplint/transpiler-cli": "^2.11.34"
"@abaplint/transpiler-cli": "^2.11.62"
}
}
7 changes: 7 additions & 0 deletions src/salv/exceptions/cx_salv_method_not_supported.clas.abap
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CLASS cx_salv_method_not_supported DEFINITION PUBLIC INHERITING FROM cx_no_check.
PUBLIC SECTION.
ENDCLASS.

CLASS cx_salv_method_not_supported IMPLEMENTATION.

ENDCLASS.
7 changes: 7 additions & 0 deletions src/salv/exceptions/cx_salv_no_check.clas.abap
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CLASS cx_salv_no_check DEFINITION PUBLIC INHERITING FROM cx_no_check.
PUBLIC SECTION.
ENDCLASS.

CLASS cx_salv_no_check IMPLEMENTATION.

ENDCLASS.
7 changes: 7 additions & 0 deletions src/salv/exceptions/cx_salv_wrong_call.clas.abap
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CLASS cx_salv_wrong_call DEFINITION PUBLIC INHERITING FROM cx_salv_access_error.
PUBLIC SECTION.
ENDCLASS.

CLASS cx_salv_wrong_call IMPLEMENTATION.

ENDCLASS.