@abaplint/cli 2.113.13 → 2.113.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/build/cli.js +3 -1
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -20038,6 +20038,7 @@ class ABAPFileInformation {
20038
20038
  identifier: new _identifier_1.Identifier(methodName, this.filename),
20039
20039
  isRedefinition: def.findDirectExpression(Expressions.Redefinition) !== undefined,
20040
20040
  isForTesting: def.concatTokens().toUpperCase().includes(" FOR TESTING"),
20041
+ isFinal: def.concatTokens().toUpperCase().includes(" FINAL"),
20041
20042
  isAbstract: def.findDirectExpression(Expressions.Abstract) !== undefined,
20042
20043
  isEventHandler: def.findDirectExpression(Expressions.EventHandler) !== undefined,
20043
20044
  visibility,
@@ -52746,7 +52747,7 @@ class Registry {
52746
52747
  }
52747
52748
  static abaplintVersion() {
52748
52749
  // magic, see build script "version.sh"
52749
- return "2.113.13";
52750
+ return "2.113.14";
52750
52751
  }
52751
52752
  getDDICReferences() {
52752
52753
  return this.ddicReferences;
@@ -74080,6 +74081,7 @@ Skips:
74080
74081
  }
74081
74082
  let fix = undefined;
74082
74083
  if (i.visibility === visibility_1.Visibility.Private
74084
+ || i.isFinal === true
74083
74085
  || (i.visibility === visibility_1.Visibility.Protected && this.hasSubClass(obj) === false)) {
74084
74086
  const implementation = this.findMethodImplementation(i, file);
74085
74087
  if (implementation !== undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.13",
3
+ "version": "2.113.14",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "homepage": "https://abaplint.org",
40
40
  "devDependencies": {
41
- "@abaplint/core": "^2.113.13",
41
+ "@abaplint/core": "^2.113.14",
42
42
  "@types/chai": "^4.3.19",
43
43
  "@types/glob": "^8.1.0",
44
44
  "@types/minimist": "^1.2.5",