Skip to content

Commit 9938958

Browse files
authored
more exceptions (#57)
1 parent f510e54 commit 9938958

12 files changed

+34
-4
lines changed

abaplint.jsonc

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,16 @@
167167
"check_ddic": true,
168168
"implement_methods": true,
169169
"indentation": true,
170-
"keyword_case": true,
170+
"keyword_case": {
171+
"style": "upper",
172+
"ignoreExceptions": false,
173+
"ignoreLowerClassImplmentationStatement": false,
174+
"ignoreGlobalClassDefinition": false,
175+
"ignoreGlobalInterface": false,
176+
"ignoreFunctionModuleName": false,
177+
"ignoreGlobalClassBoundaries": false,
178+
"ignoreKeywords": []
179+
},
171180
"when_others_last": true,
172181
"newline_between_methods": true,
173182
"avoid_use": {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
},
1212
"license": "MIT",
1313
"dependencies": {
14-
"@abaplint/cli": "^2.113.176",
15-
"@abaplint/runtime": "^2.11.34",
14+
"@abaplint/cli": "^2.113.188",
15+
"@abaplint/runtime": "^2.11.62",
1616
"@abaplint/database-sqlite": "^2.11.0",
17-
"@abaplint/transpiler-cli": "^2.11.34"
17+
"@abaplint/transpiler-cli": "^2.11.62"
1818
}
1919
}
File renamed without changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CLASS cx_salv_method_not_supported DEFINITION PUBLIC INHERITING FROM cx_no_check.
2+
PUBLIC SECTION.
3+
ENDCLASS.
4+
5+
CLASS cx_salv_method_not_supported IMPLEMENTATION.
6+
7+
ENDCLASS.
File renamed without changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CLASS cx_salv_no_check DEFINITION PUBLIC INHERITING FROM cx_no_check.
2+
PUBLIC SECTION.
3+
ENDCLASS.
4+
5+
CLASS cx_salv_no_check IMPLEMENTATION.
6+
7+
ENDCLASS.

0 commit comments

Comments
 (0)