@abaplint/core 2.88.0 → 2.88.1

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.
@@ -68,7 +68,7 @@ class Registry {
68
68
  }
69
69
  static abaplintVersion() {
70
70
  // magic, see build script "version.sh"
71
- return "2.88.0";
71
+ return "2.88.1";
72
72
  }
73
73
  getDDICReferences() {
74
74
  return this.references;
@@ -93,6 +93,9 @@ MESSAGE w125(zbar) WITH c_foo INTO message.`,
93
93
  if (statement.findFirstExpression(Expressions.InlineData) === undefined
94
94
  && !(statement.get() instanceof Statements.Parameter)
95
95
  && !(statement.get() instanceof Statements.Data)
96
+ && !(statement.get() instanceof Statements.Type)
97
+ && !(statement.get() instanceof Statements.Constant)
98
+ && !(statement.get() instanceof Statements.TypeEnum)
96
99
  && !(statement.get() instanceof Statements.MethodImplementation)
97
100
  && !(statement.get() instanceof Statements.MethodDef)
98
101
  && statement.findFirstExpression(Expressions.InlineFS) === undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.88.0",
3
+ "version": "2.88.1",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",