@abaplint/core 2.114.2 → 2.114.3

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.
@@ -46,7 +46,7 @@ class Append {
46
46
  && !(targetType instanceof basic_1.TableType)
47
47
  && dataTarget !== target
48
48
  && !(targetType instanceof basic_1.VoidType)) {
49
- const message = "Append, target not a table type";
49
+ const message = `Append, target not a table type (${targetType.constructor.name})`;
50
50
  input.issues.push((0, _syntax_input_1.syntaxIssue)(input, node.getFirstToken(), message));
51
51
  return;
52
52
  }
@@ -74,7 +74,7 @@ class Registry {
74
74
  }
75
75
  static abaplintVersion() {
76
76
  // magic, see build script "version.sh"
77
- return "2.114.2";
77
+ return "2.114.3";
78
78
  }
79
79
  getDDICReferences() {
80
80
  return this.ddicReferences;
@@ -18,7 +18,7 @@ class CDSParserError {
18
18
  title: "CDS Parser Error",
19
19
  shortDescription: `CDS parsing`,
20
20
  extendedInformation: `Parses CDS and issues parser errors`,
21
- tags: [_irule_1.RuleTag.Syntax],
21
+ tags: [_irule_1.RuleTag.Syntax, _irule_1.RuleTag.SingleFile],
22
22
  };
23
23
  }
24
24
  getConfig() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.114.2",
3
+ "version": "2.114.3",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",