@abaplint/cli 2.99.9 → 2.99.10
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 -1
- package/package.json +4 -4
package/build/cli.js
CHANGED
|
@@ -8793,6 +8793,7 @@ class StatementParser {
|
|
|
8793
8793
|
const concat = statement.concatTokens().toUpperCase();
|
|
8794
8794
|
if (concat.startsWith("CALL METHOD ") === false
|
|
8795
8795
|
&& concat.startsWith("RAISE EXCEPTION TYPE ") === false
|
|
8796
|
+
&& concat.startsWith("READ TABLE ") === false
|
|
8796
8797
|
&& concat.startsWith("LOOP AT ") === false
|
|
8797
8798
|
&& concat.startsWith("CALL FUNCTION ") === false) {
|
|
8798
8799
|
for (const { first, second } of this.buildSplits(statement.getTokens())) {
|
|
@@ -47605,7 +47606,7 @@ class Registry {
|
|
|
47605
47606
|
}
|
|
47606
47607
|
static abaplintVersion() {
|
|
47607
47608
|
// magic, see build script "version.sh"
|
|
47608
|
-
return "2.99.
|
|
47609
|
+
return "2.99.10";
|
|
47609
47610
|
}
|
|
47610
47611
|
getDDICReferences() {
|
|
47611
47612
|
return this.references;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.99.
|
|
3
|
+
"version": "2.99.10",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"bin": {
|
|
6
6
|
"abaplint": "./abaplint"
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://abaplint.org",
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@abaplint/core": "^2.99.
|
|
40
|
+
"@abaplint/core": "^2.99.10",
|
|
41
41
|
"@types/chai": "^4.3.5",
|
|
42
42
|
"@types/glob": "^7.2.0",
|
|
43
43
|
"@types/minimist": "^1.2.2",
|
|
44
44
|
"@types/mocha": "^10.0.1",
|
|
45
|
-
"@types/node": "^20.1.
|
|
45
|
+
"@types/node": "^20.1.2",
|
|
46
46
|
"@types/progress": "^2.0.5",
|
|
47
47
|
"chai": "^4.3.7",
|
|
48
48
|
"chalk": "^5.2.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"mocha": "^10.2.0",
|
|
55
55
|
"progress": "^2.0.3",
|
|
56
56
|
"typescript": "^5.0.4",
|
|
57
|
-
"webpack": "^5.82.
|
|
57
|
+
"webpack": "^5.82.1",
|
|
58
58
|
"webpack-cli": "^5.1.1",
|
|
59
59
|
"xml-js": "^1.6.11"
|
|
60
60
|
},
|