@abaplint/cli 2.113.79 → 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.
Files changed (2) hide show
  1. package/build/cli.js +3 -3
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -53576,7 +53576,7 @@ class Registry {
53576
53576
  }
53577
53577
  static abaplintVersion() {
53578
53578
  // magic, see build script "version.sh"
53579
- return "2.113.79";
53579
+ return "2.113.80";
53580
53580
  }
53581
53581
  getDDICReferences() {
53582
53582
  return this.ddicReferences;
@@ -59196,7 +59196,7 @@ Make sure to test the downported code, it might not always be completely correct
59196
59196
  return undefined;
59197
59197
  }
59198
59198
  //////////////////////////////////////////
59199
- /** removes @'s */
59199
+ /** removes @'s and commas */
59200
59200
  downportSQLExtras(low, high, lowFile, highSyntax) {
59201
59201
  if (!(low.get() instanceof _statement_1.Unknown)) {
59202
59202
  return undefined;
@@ -59240,7 +59240,7 @@ Make sure to test the downported code, it might not always be completely correct
59240
59240
  }
59241
59241
  }
59242
59242
  }
59243
- for (const fieldList of high.findAllExpressionsMulti([Expressions.SQLFieldList, Expressions.SQLFieldListLoop], true)) {
59243
+ for (const fieldList of high.findAllExpressionsMulti([Expressions.SQLFieldList, Expressions.SQLFieldListLoop, Expressions.SQLOrderBy], true)) {
59244
59244
  for (const token of fieldList.getDirectTokens()) {
59245
59245
  if (token.getStr() === ",") {
59246
59246
  addFix(token);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.79",
3
+ "version": "2.113.80",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "homepage": "https://abaplint.org",
40
40
  "devDependencies": {
41
- "@abaplint/core": "^2.113.79",
41
+ "@abaplint/core": "^2.113.80",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/glob": "^8.1.0",
44
44
  "@types/minimist": "^1.2.5",