@abaplint/cli 2.115.6 → 2.115.7

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 +5 -1
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -35787,6 +35787,7 @@ const Structures = __webpack_require__(/*! ../../3_structures/structures */ "./n
35787
35787
  const include_type_1 = __webpack_require__(/*! ../statements/include_type */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/include_type.js");
35788
35788
  const constant_1 = __webpack_require__(/*! ../statements/constant */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/constant.js");
35789
35789
  const constants_1 = __webpack_require__(/*! ./constants */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/structures/constants.js");
35790
+ const ranges_1 = __webpack_require__(/*! ../statements/ranges */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/ranges.js");
35790
35791
  class Data {
35791
35792
  static runSyntax(node, input) {
35792
35793
  var _a;
@@ -35883,6 +35884,9 @@ class Data {
35883
35884
  input.scope.addIdentifier(found);
35884
35885
  }
35885
35886
  }
35887
+ else if (c instanceof nodes_1.StatementNode && ctyp instanceof Statements.Ranges) {
35888
+ new ranges_1.Ranges().runSyntax(c, input);
35889
+ }
35886
35890
  else if (c instanceof nodes_1.StructureNode && ctyp instanceof Structures.Constants) {
35887
35891
  const { type: found, values: _ } = new constants_1.Constants().runSyntax(c, input);
35888
35892
  if (found) {
@@ -55248,7 +55252,7 @@ class Registry {
55248
55252
  }
55249
55253
  static abaplintVersion() {
55250
55254
  // magic, see build script "version.sh"
55251
- return "2.115.6";
55255
+ return "2.115.7";
55252
55256
  }
55253
55257
  getDDICReferences() {
55254
55258
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.115.6",
3
+ "version": "2.115.7",
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.115.6",
41
+ "@abaplint/core": "^2.115.7",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/minimist": "^1.2.5",
44
44
  "@types/mocha": "^10.0.10",