@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.
@@ -63,7 +63,7 @@ class Registry {
63
63
  }
64
64
  static abaplintVersion() {
65
65
  // magic, see build script "version.sh"
66
- return "2.95.46";
66
+ return "2.95.47";
67
67
  }
68
68
  getDDICReferences() {
69
69
  return this.references;
@@ -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
- let found = this.downportEnum(low, high, lowFile, highSyntax, highFile);
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.95.46",
3
+ "version": "2.95.47",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",