@abaplint/core 2.113.161 → 2.113.163

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.
@@ -10,7 +10,7 @@ class InlineFS extends combi_1.Expression {
10
10
  const right = (0, combi_1.tok)(tokens_1.ParenRightW);
11
11
  const left = (0, combi_1.tok)(tokens_1.ParenLeft);
12
12
  const fs = (0, combi_1.seq)("FIELD-SYMBOL", left, _1.TargetFieldSymbol, right);
13
- return (0, combi_1.ver)(version_1.Version.v740sp02, fs);
13
+ return (0, combi_1.ver)(version_1.Version.v740sp02, fs, version_1.Version.OpenABAP);
14
14
  }
15
15
  }
16
16
  exports.InlineFS = InlineFS;
@@ -67,7 +67,7 @@ class Registry {
67
67
  }
68
68
  static abaplintVersion() {
69
69
  // magic, see build script "version.sh"
70
- return "2.113.161";
70
+ return "2.113.163";
71
71
  }
72
72
  getDDICReferences() {
73
73
  return this.ddicReferences;
@@ -1056,6 +1056,9 @@ ${indentation}`);
1056
1056
  outlineCatchSimple(node, lowFile) {
1057
1057
  // outlines "CATCH cx_bcs INTO DATA(lx_bcs_excep).", note that this does not need to look at types
1058
1058
  var _a, _b;
1059
+ if (this.lowReg.getConfig().getVersion() === version_1.Version.OpenABAP) {
1060
+ return undefined;
1061
+ }
1059
1062
  if (!(node.get() instanceof Statements.Catch)) {
1060
1063
  return undefined;
1061
1064
  }
@@ -1102,6 +1105,9 @@ ${indentation}CATCH ${className} INTO ${targetName}.`;
1102
1105
  if (!(node.get() instanceof Statements.Move)) {
1103
1106
  return undefined;
1104
1107
  }
1108
+ if (this.lowReg.getConfig().getVersion() === version_1.Version.OpenABAP) {
1109
+ return undefined;
1110
+ }
1105
1111
  const target = node.findFirstExpression(Expressions.Target);
1106
1112
  if (!(((_a = target === null || target === void 0 ? void 0 : target.getFirstChild()) === null || _a === void 0 ? void 0 : _a.get()) instanceof Expressions.InlineData)) {
1107
1113
  return undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.113.161",
3
+ "version": "2.113.163",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",