@abaplint/cli 2.113.221 → 2.113.222
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/cli.js +8 -5
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -54557,7 +54557,7 @@ class Registry {
|
|
|
54557
54557
|
}
|
|
54558
54558
|
static abaplintVersion() {
|
|
54559
54559
|
// magic, see build script "version.sh"
|
|
54560
|
-
return "2.113.
|
|
54560
|
+
return "2.113.222";
|
|
54561
54561
|
}
|
|
54562
54562
|
getDDICReferences() {
|
|
54563
54563
|
return this.ddicReferences;
|
|
@@ -65206,8 +65206,8 @@ class ImplementMethods extends _abap_rule_1.ABAPRule {
|
|
|
65206
65206
|
continue;
|
|
65207
65207
|
}
|
|
65208
65208
|
else {
|
|
65209
|
-
const message = "Abstract methods can only be defined in abstract classes.
|
|
65210
|
-
const issue = issue_1.Issue.atIdentifier(
|
|
65209
|
+
const message = "Abstract methods can only be defined in abstract classes, " + md.name;
|
|
65210
|
+
const issue = issue_1.Issue.atIdentifier(md.identifier, message, this.getMetadata().key, this.conf.severity);
|
|
65211
65211
|
ret.push(issue);
|
|
65212
65212
|
break;
|
|
65213
65213
|
}
|
|
@@ -65318,10 +65318,13 @@ class ImplementMethods extends _abap_rule_1.ABAPRule {
|
|
|
65318
65318
|
continue;
|
|
65319
65319
|
}
|
|
65320
65320
|
else {
|
|
65321
|
-
|
|
65322
|
-
|
|
65321
|
+
// there is some bug here, which I cannot reproduce right now
|
|
65322
|
+
/*
|
|
65323
|
+
const message = "Abstract methods can only be defined in abstract classes, " + m.method.name;
|
|
65324
|
+
const issue = Issue.atIdentifier(m.method.identifier, message, this.getMetadata().key, this.conf.severity);
|
|
65323
65325
|
ret.push(issue);
|
|
65324
65326
|
break;
|
|
65327
|
+
*/
|
|
65325
65328
|
}
|
|
65326
65329
|
}
|
|
65327
65330
|
if (this.isImplemented(m, def, impl) === false) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.222",
|
|
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.
|
|
41
|
+
"@abaplint/core": "^2.113.222",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|