@abaplint/core 2.102.39 → 2.102.41

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.
@@ -5,7 +5,7 @@ const version_1 = require("../../../version");
5
5
  const combi_1 = require("../combi");
6
6
  class FindType extends combi_1.Expression {
7
7
  getRunnable() {
8
- return (0, combi_1.opt)((0, combi_1.alt)("REGEX", "SUBSTRING", (0, combi_1.ver)(version_1.Version.v755, "PCRE")));
8
+ return (0, combi_1.opt)((0, combi_1.alt)("REGEX", "SUBSTRING", (0, combi_1.ver)(version_1.Version.v755, "PCRE", version_1.Version.OpenABAP)));
9
9
  }
10
10
  }
11
11
  exports.FindType = FindType;
@@ -6,7 +6,7 @@ const expressions_1 = require("../expressions");
6
6
  const version_1 = require("../../../version");
7
7
  class CloseCursor {
8
8
  getMatcher() {
9
- const ret = (0, combi_1.seq)("CLOSE CURSOR", expressions_1.SQLSource);
9
+ const ret = (0, combi_1.seq)("CLOSE CURSOR", expressions_1.SQLSourceSimple);
10
10
  return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
11
11
  }
12
12
  }
@@ -7,8 +7,8 @@ const version_1 = require("../../../version");
7
7
  const sql_into_structure_1 = require("../expressions/sql_into_structure");
8
8
  class FetchNextCursor {
9
9
  getMatcher() {
10
- const size = (0, combi_1.seq)("PACKAGE SIZE", expressions_1.SQLSource);
11
- const ret = (0, combi_1.seq)("FETCH NEXT CURSOR", expressions_1.SQLSource, (0, combi_1.alt)(sql_into_structure_1.SQLIntoStructure, expressions_1.SQLIntoTable), (0, combi_1.opt)(size));
10
+ const size = (0, combi_1.seq)("PACKAGE SIZE", expressions_1.SQLSourceSimple);
11
+ const ret = (0, combi_1.seq)("FETCH NEXT CURSOR", expressions_1.SQLSourceSimple, (0, combi_1.alt)(sql_into_structure_1.SQLIntoStructure, expressions_1.SQLIntoTable), (0, combi_1.optPrio)(size));
12
12
  return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
13
13
  }
14
14
  }
@@ -6,7 +6,7 @@ const expressions_1 = require("../expressions");
6
6
  const version_1 = require("../../../version");
7
7
  class OpenCursor {
8
8
  getMatcher() {
9
- const ret = (0, combi_1.seq)("OPEN CURSOR", (0, combi_1.optPrio)("WITH HOLD"), expressions_1.SQLTarget, "FOR", expressions_1.Select, (0, combi_1.optPrio)(expressions_1.SQLHints));
9
+ const ret = (0, combi_1.seq)("OPEN CURSOR", (0, combi_1.optPrio)("WITH HOLD"), expressions_1.SQLTarget, "FOR", expressions_1.Select);
10
10
  return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
11
11
  }
12
12
  }
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.102.39";
68
+ return "2.102.41";
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.39",
3
+ "version": "2.102.41",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",