@abaplint/cli 2.113.160 → 2.113.161
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 +4 -1
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -54794,7 +54794,7 @@ class Registry {
|
|
|
54794
54794
|
}
|
|
54795
54795
|
static abaplintVersion() {
|
|
54796
54796
|
// magic, see build script "version.sh"
|
|
54797
|
-
return "2.113.
|
|
54797
|
+
return "2.113.161";
|
|
54798
54798
|
}
|
|
54799
54799
|
getDDICReferences() {
|
|
54800
54800
|
return this.ddicReferences;
|
|
@@ -62380,6 +62380,9 @@ ${indentation} output = ${uniqueName}.\n`;
|
|
|
62380
62380
|
outlineData(node, lowFile, highSyntax) {
|
|
62381
62381
|
// hmm, no guard here, as DATA(SDF) is valid in 702
|
|
62382
62382
|
var _a, _b;
|
|
62383
|
+
if (this.lowReg.getConfig().getVersion() === version_1.Version.OpenABAP) {
|
|
62384
|
+
return undefined;
|
|
62385
|
+
}
|
|
62383
62386
|
for (const i of node.findAllExpressionsRecursive(Expressions.InlineData)) {
|
|
62384
62387
|
const nameToken = (_a = i.findDirectExpression(Expressions.TargetField)) === null || _a === void 0 ? void 0 : _a.getFirstToken();
|
|
62385
62388
|
if (nameToken === undefined) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.161",
|
|
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.161",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|