@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 =
|
|
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
|
}
|
package/build/src/registry.js
CHANGED
|
@@ -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() {
|