@abaplint/cli 2.102.26 → 2.102.27

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 +6 -4
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -7306,7 +7306,7 @@ exports.SQLCompareOperator = void 0;
7306
7306
  const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
7307
7307
  class SQLCompareOperator extends combi_1.Expression {
7308
7308
  getRunnable() {
7309
- const operator = (0, combi_1.altPrio)("=", "<>", "<", ">", "<=", ">=", "EQ", "NE", "GE", "GT", "LT", "LE", "><", "=>");
7309
+ const operator = (0, combi_1.altPrio)("=", "<>", "<", ">", "<=", ">=", "EQ", "NE", "GE", "GT", "LT", "LE", "><", "=>", "=<");
7310
7310
  return operator;
7311
7311
  }
7312
7312
  }
@@ -14004,7 +14004,9 @@ class MoveCorresponding {
14004
14004
  getMatcher() {
14005
14005
  const keeping = (0, combi_1.ver)(version_1.Version.v740sp05, "KEEPING TARGET LINES");
14006
14006
  const expanding = (0, combi_1.ver)(version_1.Version.v740sp05, "EXPANDING NESTED TABLES");
14007
- const move = (0, combi_1.seq)("MOVE-CORRESPONDING", (0, combi_1.optPrio)("EXACT"), expressions_1.Source, "TO", expressions_1.Target, (0, combi_1.optPrio)(expanding), (0, combi_1.optPrio)(keeping));
14007
+ const move = (0, combi_1.seq)("MOVE-CORRESPONDING", (0, combi_1.optPrio)("EXACT"), expressions_1.Source, "TO",
14008
+ // inline defintions not possible in this position,
14009
+ expressions_1.SimpleTarget, (0, combi_1.optPrio)(expanding), (0, combi_1.optPrio)(keeping));
14008
14010
  return move;
14009
14011
  }
14010
14012
  }
@@ -29908,7 +29910,7 @@ const basic_1 = __webpack_require__(/*! ../../types/basic */ "./node_modules/@ab
29908
29910
  class MoveCorresponding {
29909
29911
  runSyntax(node, scope, filename) {
29910
29912
  const s = node.findDirectExpression(Expressions.Source);
29911
- const t = node.findDirectExpression(Expressions.Target);
29913
+ const t = node.findDirectExpression(Expressions.SimpleTarget);
29912
29914
  if (s === undefined || t === undefined) {
29913
29915
  throw new Error("MoveCorresponding, source or target not found");
29914
29916
  }
@@ -48735,7 +48737,7 @@ class Registry {
48735
48737
  }
48736
48738
  static abaplintVersion() {
48737
48739
  // magic, see build script "version.sh"
48738
- return "2.102.26";
48740
+ return "2.102.27";
48739
48741
  }
48740
48742
  getDDICReferences() {
48741
48743
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.102.26",
3
+ "version": "2.102.27",
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.102.26",
41
+ "@abaplint/core": "^2.102.27",
42
42
  "@types/chai": "^4.3.5",
43
43
  "@types/glob": "^7.2.0",
44
44
  "@types/minimist": "^1.2.2",