@abaplint/core 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.
@@ -4,7 +4,7 @@ exports.SQLCompareOperator = void 0;
4
4
  const combi_1 = require("../combi");
5
5
  class SQLCompareOperator extends combi_1.Expression {
6
6
  getRunnable() {
7
- const operator = (0, combi_1.altPrio)("=", "<>", "<", ">", "<=", ">=", "EQ", "NE", "GE", "GT", "LT", "LE", "><", "=>");
7
+ const operator = (0, combi_1.altPrio)("=", "<>", "<", ">", "<=", ">=", "EQ", "NE", "GE", "GT", "LT", "LE", "><", "=>", "=<");
8
8
  return operator;
9
9
  }
10
10
  }
@@ -8,7 +8,9 @@ class MoveCorresponding {
8
8
  getMatcher() {
9
9
  const keeping = (0, combi_1.ver)(version_1.Version.v740sp05, "KEEPING TARGET LINES");
10
10
  const expanding = (0, combi_1.ver)(version_1.Version.v740sp05, "EXPANDING NESTED TABLES");
11
- 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));
11
+ const move = (0, combi_1.seq)("MOVE-CORRESPONDING", (0, combi_1.optPrio)("EXACT"), expressions_1.Source, "TO",
12
+ // inline defintions not possible in this position,
13
+ expressions_1.SimpleTarget, (0, combi_1.optPrio)(expanding), (0, combi_1.optPrio)(keeping));
12
14
  return move;
13
15
  }
14
16
  }
@@ -9,7 +9,7 @@ const basic_1 = require("../../types/basic");
9
9
  class MoveCorresponding {
10
10
  runSyntax(node, scope, filename) {
11
11
  const s = node.findDirectExpression(Expressions.Source);
12
- const t = node.findDirectExpression(Expressions.Target);
12
+ const t = node.findDirectExpression(Expressions.SimpleTarget);
13
13
  if (s === undefined || t === undefined) {
14
14
  throw new Error("MoveCorresponding, source or target not found");
15
15
  }
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.102.26";
68
+ return "2.102.27";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.102.26",
3
+ "version": "2.102.27",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",