@abaplint/core 2.113.102 → 2.113.103
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.
|
@@ -7,7 +7,7 @@ const version_1 = require("../../../version");
|
|
|
7
7
|
class CallOLE {
|
|
8
8
|
getMatcher() {
|
|
9
9
|
const rc = (0, combi_1.seq)("=", expressions_1.Target);
|
|
10
|
-
const ret = (0, combi_1.seq)("CALL METHOD OF", expressions_1.Source, expressions_1.Source, (0, combi_1.opt)(rc), (0, combi_1.opt)("NO FLUSH"), (0, combi_1.opt)("QUEUE-ONLY"), (0, combi_1.opt)(expressions_1.OLEExporting));
|
|
10
|
+
const ret = (0, combi_1.seq)("CALL METHOD OF", expressions_1.Source, expressions_1.Source, (0, combi_1.opt)(rc), (0, combi_1.opt)("NO FLUSH"), (0, combi_1.opt)((0, combi_1.alt)("QUEUE-ONLY", "QUEUEONLY")), (0, combi_1.opt)(expressions_1.OLEExporting));
|
|
11
11
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -31,7 +31,7 @@ class Submit {
|
|
|
31
31
|
const imm = (0, combi_1.seq)("IMMEDIATELY", expressions_1.Source);
|
|
32
32
|
const dest = (0, combi_1.seq)("DESTINATION", expressions_1.Source);
|
|
33
33
|
const language = (0, combi_1.seq)("LANGUAGE", expressions_1.Source);
|
|
34
|
-
const perm = (0, combi_1.per)((0, combi_1.plus)(awith), selectionTable, spool, lineSize, lineCount, archive, user, sset, ssetp, keep, cover, imm, layout, dest, language, free, newList, uss, "TO SAP-SPOOL", "WITHOUT SPOOL DYNPRO", "VIA SELECTION-SCREEN", exporting, expressions_1.AndReturn, job);
|
|
34
|
+
const perm = (0, combi_1.per)((0, combi_1.plus)(awith), selectionTable, (0, combi_1.plus)(awith), spool, lineSize, lineCount, archive, user, sset, ssetp, keep, cover, imm, layout, dest, language, free, newList, uss, "TO SAP-SPOOL", "WITHOUT SPOOL DYNPRO", "VIA SELECTION-SCREEN", exporting, expressions_1.AndReturn, job);
|
|
35
35
|
const ret = (0, combi_1.seq)("SUBMIT", prog, (0, combi_1.opt)(perm));
|
|
36
36
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
37
37
|
}
|
|
@@ -28,7 +28,8 @@ class Select {
|
|
|
28
28
|
}
|
|
29
29
|
const fields = this.findFields(node, input);
|
|
30
30
|
if (fields.length === 0
|
|
31
|
-
&& node.findDirectExpression(Expressions.SQLFieldListLoop) === undefined
|
|
31
|
+
&& node.findDirectExpression(Expressions.SQLFieldListLoop) === undefined
|
|
32
|
+
&& node.findDirectExpression(Expressions.SQLAggregation) === undefined) {
|
|
32
33
|
const message = `SELECT: fields missing`;
|
|
33
34
|
input.issues.push((0, _syntax_input_1.syntaxIssue)(input, node.getFirstToken(), message));
|
|
34
35
|
return;
|
package/build/src/registry.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.103",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"typescript": "^5.7.3"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"fast-xml-parser": "^4.5.
|
|
66
|
+
"fast-xml-parser": "^4.5.2",
|
|
67
67
|
"json5": "^2.2.3",
|
|
68
68
|
"vscode-languageserver-types": "^3.17.5"
|
|
69
69
|
}
|