@abaplint/cli 2.115.12 → 2.115.13
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 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -10012,13 +10012,14 @@ class StatementParser {
|
|
|
10012
10012
|
lazyUnknown(wa) {
|
|
10013
10013
|
const result = [];
|
|
10014
10014
|
for (let statement of wa.statements) {
|
|
10015
|
-
// dont use CALL METHOD, when executing lazy, it easily gives a Move for the last
|
|
10015
|
+
// dont use CALL METHOD, when executing lazy, it easily gives a Move for the last statement if lazy logic is evaluated
|
|
10016
10016
|
if (statement.get() instanceof _statement_1.Unknown) {
|
|
10017
10017
|
const concat = statement.concatTokens().toUpperCase();
|
|
10018
10018
|
if (concat.startsWith("CALL METHOD ") === false
|
|
10019
10019
|
&& concat.startsWith("RAISE EXCEPTION TYPE ") === false
|
|
10020
10020
|
&& concat.startsWith("READ TABLE ") === false
|
|
10021
10021
|
&& concat.startsWith("LOOP AT ") === false
|
|
10022
|
+
&& concat.startsWith("SELECT SINGLE ") === false
|
|
10022
10023
|
&& concat.startsWith("CALL FUNCTION ") === false) {
|
|
10023
10024
|
for (const { first, second } of this.buildSplits(statement.getTokens())) {
|
|
10024
10025
|
if (second.length === 1) {
|
|
@@ -55331,7 +55332,7 @@ class Registry {
|
|
|
55331
55332
|
}
|
|
55332
55333
|
static abaplintVersion() {
|
|
55333
55334
|
// magic, see build script "version.sh"
|
|
55334
|
-
return "2.115.
|
|
55335
|
+
return "2.115.13";
|
|
55335
55336
|
}
|
|
55336
55337
|
getDDICReferences() {
|
|
55337
55338
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.115.
|
|
3
|
+
"version": "2.115.13",
|
|
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.115.
|
|
41
|
+
"@abaplint/core": "^2.115.13",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|