@abaplint/core 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.
package/build/abaplint.d.ts
CHANGED
|
@@ -305,6 +305,7 @@ class ABAPFileInformation {
|
|
|
305
305
|
identifier: new _identifier_1.Identifier(methodName, this.filename),
|
|
306
306
|
isRedefinition: def.findDirectExpression(Expressions.Redefinition) !== undefined,
|
|
307
307
|
isForTesting: def.concatTokens().toUpperCase().includes(" FOR TESTING"),
|
|
308
|
+
isFinal: def.concatTokens().toUpperCase().includes(" FINAL"),
|
|
308
309
|
isAbstract: def.findDirectExpression(Expressions.Abstract) !== undefined,
|
|
309
310
|
isEventHandler: def.findDirectExpression(Expressions.EventHandler) !== undefined,
|
|
310
311
|
visibility,
|
package/build/src/registry.js
CHANGED
|
@@ -157,6 +157,7 @@ Skips:
|
|
|
157
157
|
}
|
|
158
158
|
let fix = undefined;
|
|
159
159
|
if (i.visibility === visibility_1.Visibility.Private
|
|
160
|
+
|| i.isFinal === true
|
|
160
161
|
|| (i.visibility === visibility_1.Visibility.Protected && this.hasSubClass(obj) === false)) {
|
|
161
162
|
const implementation = this.findMethodImplementation(i, file);
|
|
162
163
|
if (implementation !== undefined) {
|