@abaplint/cli 2.113.106 → 2.113.108
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 +9 -4
- package/package.json +3 -3
package/build/cli.js
CHANGED
|
@@ -8942,7 +8942,7 @@ class StringTemplateFormatting extends combi_1.Expression {
|
|
|
8942
8942
|
const alphaOptions = (0, combi_1.altPrio)("OUT", "RAW", "IN", _1.Source);
|
|
8943
8943
|
const alignOptions = (0, combi_1.altPrio)("LEFT", "RIGHT", "CENTER", _1.Source, dynamic_1.Dynamic);
|
|
8944
8944
|
const dateTimeOptions = (0, combi_1.altPrio)("RAW", "ISO", "USER", "ENVIRONMENT", _1.Source, dynamic_1.Dynamic);
|
|
8945
|
-
const timeStampOptions = (0, combi_1.altPrio)("SPACE", "ISO", "USER", "ENVIRONMENT", _1.Source);
|
|
8945
|
+
const timeStampOptions = (0, combi_1.altPrio)("SPACE", "ISO", "USER", "ENVIRONMENT", _1.Source, dynamic_1.Dynamic);
|
|
8946
8946
|
const numberOptions = (0, combi_1.altPrio)("RAW", "USER", "ENVIRONMENT", _1.Source, dynamic_1.Dynamic);
|
|
8947
8947
|
const signOptions = (0, combi_1.altPrio)("LEFT", "LEFTPLUS", "LEFTSPACE", "RIGHT", "RIGHTPLUS", "RIGHTSPACE", _1.Source);
|
|
8948
8948
|
const caseOptions = (0, combi_1.altPrio)("RAW", "UPPER", "LOWER", _1.Source, dynamic_1.Dynamic);
|
|
@@ -39810,6 +39810,7 @@ class MethodDefinition extends _identifier_1.Identifier {
|
|
|
39810
39810
|
throw new Error("MethodDefinition, expected MethodDef as part of input node");
|
|
39811
39811
|
}
|
|
39812
39812
|
super(found.getFirstToken(), input.filename);
|
|
39813
|
+
this.className = input.scope.getName();
|
|
39813
39814
|
this.redefinition = false;
|
|
39814
39815
|
if (node.findDirectExpression(Expressions.Redefinition)) {
|
|
39815
39816
|
this.redefinition = true;
|
|
@@ -39862,6 +39863,9 @@ class MethodDefinition extends _identifier_1.Identifier {
|
|
|
39862
39863
|
getVisibility() {
|
|
39863
39864
|
return this.visibility;
|
|
39864
39865
|
}
|
|
39866
|
+
getClassName() {
|
|
39867
|
+
return this.className;
|
|
39868
|
+
}
|
|
39865
39869
|
isRedefinition() {
|
|
39866
39870
|
return this.redefinition;
|
|
39867
39871
|
}
|
|
@@ -52945,8 +52949,9 @@ class TypePool extends _abap_object_1.ABAPObject {
|
|
|
52945
52949
|
};
|
|
52946
52950
|
}
|
|
52947
52951
|
getDescription() {
|
|
52948
|
-
|
|
52949
|
-
|
|
52952
|
+
var _a, _b, _c;
|
|
52953
|
+
const parsed = super.parseRaw2();
|
|
52954
|
+
return ((_c = (_b = (_a = parsed === null || parsed === void 0 ? void 0 : parsed.abapGit) === null || _a === void 0 ? void 0 : _a["asx:abap"]) === null || _b === void 0 ? void 0 : _b["asx:values"]) === null || _c === void 0 ? void 0 : _c.DDTEXT) || "";
|
|
52950
52955
|
}
|
|
52951
52956
|
}
|
|
52952
52957
|
exports.TypePool = TypePool;
|
|
@@ -53851,7 +53856,7 @@ class Registry {
|
|
|
53851
53856
|
}
|
|
53852
53857
|
static abaplintVersion() {
|
|
53853
53858
|
// magic, see build script "version.sh"
|
|
53854
|
-
return "2.113.
|
|
53859
|
+
return "2.113.108";
|
|
53855
53860
|
}
|
|
53856
53861
|
getDDICReferences() {
|
|
53857
53862
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.108",
|
|
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.113.
|
|
41
|
+
"@abaplint/core": "^2.113.108",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|
|
45
45
|
"@types/mocha": "^10.0.10",
|
|
46
|
-
"@types/node": "^22.13.
|
|
46
|
+
"@types/node": "^22.13.13",
|
|
47
47
|
"@types/progress": "^2.0.7",
|
|
48
48
|
"chai": "^4.5.0",
|
|
49
49
|
"chalk": "^5.4.1",
|