@abaplint/cli 2.115.7 → 2.115.8

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 +10 -2
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -19500,7 +19500,7 @@ const types_1 = __webpack_require__(/*! ./types */ "./node_modules/@abaplint/cor
19500
19500
  const define_1 = __webpack_require__(/*! ./define */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/define.js");
19501
19501
  class Data {
19502
19502
  getMatcher() {
19503
- return (0, _combi_1.beginEnd)((0, _combi_1.sta)(Statements.DataBegin), (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Data), (0, _combi_1.sub)(Data), (0, _combi_1.sta)(Statements.Include), (0, _combi_1.sta)(Statements.Ranges), (0, _combi_1.sta)(Statements.Constant), (0, _combi_1.sub)(constants_1.Constants), (0, _combi_1.sta)(Statements.Type), (0, _combi_1.sub)(types_1.Types), (0, _combi_1.sub)(enhancement_1.Enhancement), (0, _combi_1.sub)(define_1.Define), (0, _combi_1.sta)(Statements.IncludeType), (0, _combi_1.sta)(Statements.TypePools), (0, _combi_1.sta)(Statements.EnhancementPoint))), (0, _combi_1.sta)(Statements.DataEnd));
19503
+ return (0, _combi_1.beginEnd)((0, _combi_1.sta)(Statements.DataBegin), (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Data), (0, _combi_1.sub)(Data), (0, _combi_1.sta)(Statements.Include), (0, _combi_1.sta)(Statements.Ranges), (0, _combi_1.sta)(Statements.Constant), (0, _combi_1.sub)(constants_1.Constants), (0, _combi_1.sta)(Statements.Type), (0, _combi_1.sub)(types_1.Types), (0, _combi_1.sub)(enhancement_1.Enhancement), (0, _combi_1.sub)(define_1.Define), (0, _combi_1.sta)(Statements.IncludeType), (0, _combi_1.sta)(Statements.Parameter), (0, _combi_1.sta)(Statements.SelectionScreen), (0, _combi_1.sta)(Statements.SelectOption), (0, _combi_1.sta)(Statements.TypePools), (0, _combi_1.sta)(Statements.EnhancementPoint))), (0, _combi_1.sta)(Statements.DataEnd));
19504
19504
  }
19505
19505
  }
19506
19506
  exports.Data = Data;
@@ -35788,6 +35788,8 @@ const include_type_1 = __webpack_require__(/*! ../statements/include_type */ "./
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
35790
  const ranges_1 = __webpack_require__(/*! ../statements/ranges */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/ranges.js");
35791
+ const selectoption_1 = __webpack_require__(/*! ../statements/selectoption */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/selectoption.js");
35792
+ const parameter_1 = __webpack_require__(/*! ../statements/parameter */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/parameter.js");
35791
35793
  class Data {
35792
35794
  static runSyntax(node, input) {
35793
35795
  var _a;
@@ -35887,6 +35889,12 @@ class Data {
35887
35889
  else if (c instanceof nodes_1.StatementNode && ctyp instanceof Statements.Ranges) {
35888
35890
  new ranges_1.Ranges().runSyntax(c, input);
35889
35891
  }
35892
+ else if (c instanceof nodes_1.StatementNode && ctyp instanceof Statements.SelectOption) {
35893
+ new selectoption_1.SelectOption().runSyntax(c, input);
35894
+ }
35895
+ else if (c instanceof nodes_1.StatementNode && ctyp instanceof Statements.Parameter) {
35896
+ new parameter_1.Parameter().runSyntax(c, input);
35897
+ }
35890
35898
  else if (c instanceof nodes_1.StructureNode && ctyp instanceof Structures.Constants) {
35891
35899
  const { type: found, values: _ } = new constants_1.Constants().runSyntax(c, input);
35892
35900
  if (found) {
@@ -55252,7 +55260,7 @@ class Registry {
55252
55260
  }
55253
55261
  static abaplintVersion() {
55254
55262
  // magic, see build script "version.sh"
55255
- return "2.115.7";
55263
+ return "2.115.8";
55256
55264
  }
55257
55265
  getDDICReferences() {
55258
55266
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.115.7",
3
+ "version": "2.115.8",
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.7",
41
+ "@abaplint/core": "^2.115.8",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/minimist": "^1.2.5",
44
44
  "@types/mocha": "^10.0.10",