@abaplint/cli 2.102.21 → 2.102.22

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 +11 -6
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -48691,7 +48691,7 @@ class Registry {
48691
48691
  }
48692
48692
  static abaplintVersion() {
48693
48693
  // magic, see build script "version.sh"
48694
- return "2.102.21";
48694
+ return "2.102.22";
48695
48695
  }
48696
48696
  getDDICReferences() {
48697
48697
  return this.ddicReferences;
@@ -67708,7 +67708,12 @@ ENDTRY.
67708
67708
  MESSAGE w125(zbar) WITH c_foo INTO message.
67709
67709
  SELECT SINGLE * FROM tadir INTO @DATA(sdfs).
67710
67710
  IF sy-subrc <> 0.
67711
- ENDIF.`,
67711
+ ENDIF.
67712
+
67713
+ DATA: BEGIN OF blah ##NEEDED,
67714
+ test1 TYPE string,
67715
+ test2 TYPE string,
67716
+ END OF blah.`,
67712
67717
  };
67713
67718
  }
67714
67719
  getConfig() {
@@ -67795,15 +67800,15 @@ ENDIF.`,
67795
67800
  if (statement.findFirstExpression(Expressions.InlineData) === undefined
67796
67801
  && !(statement.get() instanceof Statements.Parameter)
67797
67802
  && !(statement.get() instanceof Statements.Data)
67798
- && !(statement.get() instanceof Statements.DataEnd)
67803
+ && !(statement.get() instanceof Statements.DataBegin)
67799
67804
  && !(statement.get() instanceof Statements.Type)
67800
67805
  && !(statement.get() instanceof Statements.Form)
67801
67806
  && !(statement.get() instanceof Statements.Tables)
67802
- && !(statement.get() instanceof Statements.TypeEnd)
67807
+ && !(statement.get() instanceof Statements.TypeBegin)
67803
67808
  && !(statement.get() instanceof Statements.Constant)
67804
- && !(statement.get() instanceof Statements.ConstantEnd)
67809
+ && !(statement.get() instanceof Statements.ConstantBegin)
67805
67810
  && !(statement.get() instanceof Statements.TypeEnum)
67806
- && !(statement.get() instanceof Statements.TypeEnumEnd)
67811
+ && !(statement.get() instanceof Statements.TypeEnumBegin)
67807
67812
  && !(statement.get() instanceof Statements.MethodImplementation)
67808
67813
  && !(statement.get() instanceof Statements.MethodDef)
67809
67814
  && statement.findFirstExpression(Expressions.InlineFS) === undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.102.21",
3
+ "version": "2.102.22",
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.102.21",
41
+ "@abaplint/core": "^2.102.22",
42
42
  "@types/chai": "^4.3.5",
43
43
  "@types/glob": "^7.2.0",
44
44
  "@types/minimist": "^1.2.2",