@abaplint/cli 2.113.200 → 2.113.201

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 +12 -3
  2. package/package.json +4 -4
package/build/cli.js CHANGED
@@ -16685,7 +16685,7 @@ const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/
16685
16685
  const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
16686
16686
  class Select {
16687
16687
  getMatcher() {
16688
- const union = (0, combi_1.ver)(version_1.Version.v750, (0, combi_1.seq)("UNION", (0, combi_1.optPrio)((0, combi_1.altPrio)("DISTINCT", "ALL")), expressions_1.Select));
16688
+ const union = (0, combi_1.ver)(version_1.Version.v750, (0, combi_1.seq)("UNION", (0, combi_1.optPrio)((0, combi_1.altPrio)("DISTINCT", "ALL")), expressions_1.Select), version_1.Version.OpenABAP);
16689
16689
  return (0, combi_1.seq)(expressions_1.Select, (0, combi_1.starPrio)(union));
16690
16690
  }
16691
16691
  }
@@ -29985,6 +29985,11 @@ class Append {
29985
29985
  if (sourceType instanceof basic_1.TableType) {
29986
29986
  sourceType = sourceType.getRowType();
29987
29987
  }
29988
+ else if (!(sourceType instanceof basic_1.VoidType) && !(sourceType instanceof basic_1.UnknownType)) {
29989
+ const message = "LINES OF must be a table type";
29990
+ input.issues.push((0, _syntax_input_1.syntaxIssue)(input, node.getFirstToken(), message));
29991
+ return;
29992
+ }
29988
29993
  if (targetType instanceof basic_1.TableType) {
29989
29994
  targetType = targetType.getRowType();
29990
29995
  }
@@ -36594,14 +36599,18 @@ exports.SELECTION_EVENTS = [
36594
36599
  Statements.EndOfPage,
36595
36600
  ];
36596
36601
  exports.DECLARATION_STUFF = [
36602
+ Statements.Type,
36603
+ Statements.TypeBegin,
36604
+ Statements.TypeEnum,
36605
+ Statements.TypeEnumBegin,
36597
36606
  Statements.Data,
36598
36607
  Statements.DataBegin,
36599
36608
  Statements.Constant,
36609
+ Statements.ConstantBegin,
36600
36610
  Statements.Tables,
36601
36611
  Statements.Include, // this is not super correct, but anyhow
36602
36612
  Statements.Parameter,
36603
36613
  Statements.SelectionScreen,
36604
- Statements.ConstantBegin,
36605
36614
  Statements.Define,
36606
36615
  ];
36607
36616
  //# sourceMappingURL=selection_events.js.map
@@ -54992,7 +55001,7 @@ class Registry {
54992
55001
  }
54993
55002
  static abaplintVersion() {
54994
55003
  // magic, see build script "version.sh"
54995
- return "2.113.200";
55004
+ return "2.113.201";
54996
55005
  }
54997
55006
  getDDICReferences() {
54998
55007
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.200",
3
+ "version": "2.113.201",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -38,11 +38,11 @@
38
38
  },
39
39
  "homepage": "https://abaplint.org",
40
40
  "devDependencies": {
41
- "@abaplint/core": "^2.113.200",
41
+ "@abaplint/core": "^2.113.201",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/minimist": "^1.2.5",
44
44
  "@types/mocha": "^10.0.10",
45
- "@types/node": "^24.3.1",
45
+ "@types/node": "^24.4.0",
46
46
  "@types/progress": "^2.0.7",
47
47
  "chai": "^4.5.0",
48
48
  "p-limit": "^3.1.0",
@@ -50,7 +50,7 @@
50
50
  "eslint": "^9.35.0",
51
51
  "glob": "^11.0.3",
52
52
  "json5": "^2.2.3",
53
- "memfs": "^4.38.2",
53
+ "memfs": "^4.39.0",
54
54
  "minimist": "^1.2.8",
55
55
  "mocha": "^11.7.2",
56
56
  "progress": "^2.0.3",