@abaplint/cli 2.112.8 → 2.112.9
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 +3 -3
- package/package.json +4 -4
package/build/cli.js
CHANGED
|
@@ -6974,7 +6974,7 @@ const _1 = __webpack_require__(/*! . */ "./node_modules/@abaplint/core/build/src
|
|
|
6974
6974
|
class ParameterException extends combi_1.Expression {
|
|
6975
6975
|
getRunnable() {
|
|
6976
6976
|
const name = (0, combi_1.altPrio)("OTHERS", _1.ParameterName);
|
|
6977
|
-
return (0, combi_1.seq)(name, "=", _1.
|
|
6977
|
+
return (0, combi_1.seq)(name, "=", (0, combi_1.altPrio)(_1.Integer, _1.SimpleFieldChain), (0, combi_1.optPrio)((0, combi_1.seq)("MESSAGE", _1.Target)));
|
|
6978
6978
|
}
|
|
6979
6979
|
}
|
|
6980
6980
|
exports.ParameterException = ParameterException;
|
|
@@ -52383,7 +52383,7 @@ class Registry {
|
|
|
52383
52383
|
}
|
|
52384
52384
|
static abaplintVersion() {
|
|
52385
52385
|
// magic, see build script "version.sh"
|
|
52386
|
-
return "2.112.
|
|
52386
|
+
return "2.112.9";
|
|
52387
52387
|
}
|
|
52388
52388
|
getDDICReferences() {
|
|
52389
52389
|
return this.ddicReferences;
|
|
@@ -55849,7 +55849,7 @@ class ClassicExceptionsOverlap extends _abap_rule_1.ABAPRule {
|
|
|
55849
55849
|
for (const p of struc.findAllExpressions(Expressions.ParameterListExceptions)) {
|
|
55850
55850
|
const set = new Set();
|
|
55851
55851
|
for (const e of p.findAllExpressions(Expressions.ParameterException)) {
|
|
55852
|
-
const text = (_a = e.findDirectExpression(Expressions.
|
|
55852
|
+
const text = (_a = e.findDirectExpression(Expressions.Integer)) === null || _a === void 0 ? void 0 : _a.concatTokens().toUpperCase();
|
|
55853
55853
|
if (text === undefined) {
|
|
55854
55854
|
continue;
|
|
55855
55855
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.112.
|
|
3
|
+
"version": "2.112.9",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.112.
|
|
42
|
-
"@types/chai": "^4.3.
|
|
41
|
+
"@abaplint/core": "^2.112.9",
|
|
42
|
+
"@types/chai": "^4.3.17",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|
|
45
45
|
"@types/mocha": "^10.0.7",
|
|
46
|
-
"@types/node": "^22.0.
|
|
46
|
+
"@types/node": "^22.0.2",
|
|
47
47
|
"@types/progress": "^2.0.7",
|
|
48
48
|
"chai": "^4.5.0",
|
|
49
49
|
"chalk": "^5.3.0",
|