@abaplint/transpiler-cli 2.11.77 → 2.11.78
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/bundle.js +9 -1
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -39,7 +39,7 @@ class TranspilerConfig {
|
|
|
39
39
|
input_filter: [],
|
|
40
40
|
output_folder: "output",
|
|
41
41
|
libs: [
|
|
42
|
-
{ "url": "https://github.com/open-abap/open-abap" },
|
|
42
|
+
{ "url": "https://github.com/open-abap/open-abap-core" },
|
|
43
43
|
],
|
|
44
44
|
write_unit_tests: true,
|
|
45
45
|
write_source_map: true,
|
|
@@ -88615,6 +88615,12 @@ function escapeRegExp(string) {
|
|
|
88615
88615
|
// TODO: currently SELECT into are always handled as CORRESPONDING
|
|
88616
88616
|
class SelectTranspiler {
|
|
88617
88617
|
transpile(node, traversal, targetOverride) {
|
|
88618
|
+
if (node.findDirectTokenByText("ALL") !== undefined) {
|
|
88619
|
+
throw new Error("SelectTranspiler, UNION ALL todo");
|
|
88620
|
+
}
|
|
88621
|
+
else if (node.findDirectTokenByText("DISTINCT") !== undefined) {
|
|
88622
|
+
throw new Error("SelectTranspiler, UNION DISTINCT todo");
|
|
88623
|
+
}
|
|
88618
88624
|
let target = "undefined";
|
|
88619
88625
|
if (targetOverride) {
|
|
88620
88626
|
// SelectLoop structure uses override
|
|
@@ -92545,6 +92551,7 @@ exports.config = {
|
|
|
92545
92551
|
"DEVC",
|
|
92546
92552
|
"DOMA",
|
|
92547
92553
|
"DTEL",
|
|
92554
|
+
"ENHO",
|
|
92548
92555
|
"ENHS",
|
|
92549
92556
|
"ENQU",
|
|
92550
92557
|
"FUGR",
|
|
@@ -92571,6 +92578,7 @@ exports.config = {
|
|
|
92571
92578
|
"SUSC",
|
|
92572
92579
|
"SUSH",
|
|
92573
92580
|
"SUSO",
|
|
92581
|
+
"SXCI",
|
|
92574
92582
|
"TABL",
|
|
92575
92583
|
"TOBJ",
|
|
92576
92584
|
"TRAN",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.78",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@abaplint/core": "^2.113.198",
|
|
31
|
-
"@abaplint/transpiler": "^2.11.
|
|
31
|
+
"@abaplint/transpiler": "^2.11.78",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.3.1",
|
|
34
34
|
"@types/progress": "^2.0.7",
|