@abaplint/core 2.113.78 → 2.113.80

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.
@@ -3798,14 +3798,14 @@ declare interface IRange {
3798
3798
  end: Position;
3799
3799
  }
3800
3800
 
3801
- declare interface IReference {
3801
+ export declare interface IReference {
3802
3802
  position: Identifier;
3803
3803
  resolved: Identifier | undefined;
3804
3804
  referenceType: ReferenceType;
3805
3805
  extra?: IReferenceExtras;
3806
3806
  }
3807
3807
 
3808
- declare interface IReferenceExtras {
3808
+ export declare interface IReferenceExtras {
3809
3809
  ooName?: string;
3810
3810
  ooType?: "CLAS" | "INTF" | "Void";
3811
3811
  }
@@ -67,7 +67,7 @@ class Registry {
67
67
  }
68
68
  static abaplintVersion() {
69
69
  // magic, see build script "version.sh"
70
- return "2.113.78";
70
+ return "2.113.80";
71
71
  }
72
72
  getDDICReferences() {
73
73
  return this.ddicReferences;
@@ -536,7 +536,7 @@ Make sure to test the downported code, it might not always be completely correct
536
536
  return undefined;
537
537
  }
538
538
  //////////////////////////////////////////
539
- /** removes @'s */
539
+ /** removes @'s and commas */
540
540
  downportSQLExtras(low, high, lowFile, highSyntax) {
541
541
  if (!(low.get() instanceof _statement_1.Unknown)) {
542
542
  return undefined;
@@ -580,7 +580,7 @@ Make sure to test the downported code, it might not always be completely correct
580
580
  }
581
581
  }
582
582
  }
583
- for (const fieldList of high.findAllExpressionsMulti([Expressions.SQLFieldList, Expressions.SQLFieldListLoop], true)) {
583
+ for (const fieldList of high.findAllExpressionsMulti([Expressions.SQLFieldList, Expressions.SQLFieldListLoop, Expressions.SQLOrderBy], true)) {
584
584
  for (const token of fieldList.getDirectTokens()) {
585
585
  if (token.getStr() === ",") {
586
586
  addFix(token);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.113.78",
3
+ "version": "2.113.80",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",