@abaplint/core 2.95.46 → 2.95.47
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/src/registry.js
CHANGED
|
@@ -315,7 +315,12 @@ Only one transformation is applied to a statement at a time, so multiple steps m
|
|
|
315
315
|
if (low.getFirstToken().getStart() instanceof position_1.VirtualPosition) {
|
|
316
316
|
return undefined;
|
|
317
317
|
}
|
|
318
|
-
|
|
318
|
+
// downport XSDBOOL() early, as it is valid 702 syntax
|
|
319
|
+
let found = this.replaceXsdBool(high, lowFile, highSyntax);
|
|
320
|
+
if (found) {
|
|
321
|
+
return found;
|
|
322
|
+
}
|
|
323
|
+
found = this.downportEnum(low, high, lowFile, highSyntax, highFile);
|
|
319
324
|
if (found) {
|
|
320
325
|
return found;
|
|
321
326
|
}
|
|
@@ -457,10 +462,6 @@ Only one transformation is applied to a statement at a time, so multiple steps m
|
|
|
457
462
|
if (found) {
|
|
458
463
|
return found;
|
|
459
464
|
}
|
|
460
|
-
found = this.replaceXsdBool(high, lowFile, highSyntax);
|
|
461
|
-
if (found) {
|
|
462
|
-
return found;
|
|
463
|
-
}
|
|
464
465
|
found = this.replaceLineFunctions(high, lowFile, highSyntax, highFile);
|
|
465
466
|
if (found) {
|
|
466
467
|
return found;
|