@abaplint/transpiler 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.
|
@@ -13,6 +13,12 @@ function escapeRegExp(string) {
|
|
|
13
13
|
// TODO: currently SELECT into are always handled as CORRESPONDING
|
|
14
14
|
class SelectTranspiler {
|
|
15
15
|
transpile(node, traversal, targetOverride) {
|
|
16
|
+
if (node.findDirectTokenByText("ALL") !== undefined) {
|
|
17
|
+
throw new Error("SelectTranspiler, UNION ALL todo");
|
|
18
|
+
}
|
|
19
|
+
else if (node.findDirectTokenByText("DISTINCT") !== undefined) {
|
|
20
|
+
throw new Error("SelectTranspiler, UNION DISTINCT todo");
|
|
21
|
+
}
|
|
16
22
|
let target = "undefined";
|
|
17
23
|
if (targetOverride) {
|
|
18
24
|
// SelectLoop structure uses override
|
package/build/src/validation.js
CHANGED