@abaplint/cli 2.109.1 → 2.109.2
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 +2 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -43743,7 +43743,7 @@ class MacroReferences {
|
|
|
43743
43743
|
getDefinitionPosition(filename, token) {
|
|
43744
43744
|
for (const d of this.definitions[filename] || []) {
|
|
43745
43745
|
if (d.token.getStart().equals(token.getStart())) {
|
|
43746
|
-
return { start: d.
|
|
43746
|
+
return { start: d.start, end: d.end };
|
|
43747
43747
|
}
|
|
43748
43748
|
}
|
|
43749
43749
|
return undefined;
|
|
@@ -51745,7 +51745,7 @@ class Registry {
|
|
|
51745
51745
|
}
|
|
51746
51746
|
static abaplintVersion() {
|
|
51747
51747
|
// magic, see build script "version.sh"
|
|
51748
|
-
return "2.109.
|
|
51748
|
+
return "2.109.2";
|
|
51749
51749
|
}
|
|
51750
51750
|
getDDICReferences() {
|
|
51751
51751
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.109.
|
|
3
|
+
"version": "2.109.2",
|
|
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.109.
|
|
41
|
+
"@abaplint/core": "^2.109.2",
|
|
42
42
|
"@types/chai": "^4.3.16",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|