@abaplint/cli 2.114.1 → 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.
- package/build/cli.js +4 -4
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -30239,7 +30239,7 @@ class Append {
|
|
|
30239
30239
|
&& !(targetType instanceof basic_1.TableType)
|
|
30240
30240
|
&& dataTarget !== target
|
|
30241
30241
|
&& !(targetType instanceof basic_1.VoidType)) {
|
|
30242
|
-
const message =
|
|
30242
|
+
const message = `Append, target not a table type (${targetType.constructor.name})`;
|
|
30243
30243
|
input.issues.push((0, _syntax_input_1.syntaxIssue)(input, node.getFirstToken(), message));
|
|
30244
30244
|
return;
|
|
30245
30245
|
}
|
|
@@ -54989,7 +54989,7 @@ class Registry {
|
|
|
54989
54989
|
}
|
|
54990
54990
|
static abaplintVersion() {
|
|
54991
54991
|
// magic, see build script "version.sh"
|
|
54992
|
-
return "2.114.
|
|
54992
|
+
return "2.114.3";
|
|
54993
54993
|
}
|
|
54994
54994
|
getDDICReferences() {
|
|
54995
54995
|
return this.ddicReferences;
|
|
@@ -57062,7 +57062,7 @@ ENDTRY.`,
|
|
|
57062
57062
|
for (const statNode of file.getStatements()) {
|
|
57063
57063
|
const statement = statNode.get();
|
|
57064
57064
|
if (statement instanceof Statements.CallTransaction && !statNode.concatTokensWithoutStringsAndComments().toUpperCase().includes("WITH AUTHORITY-CHECK")) {
|
|
57065
|
-
issues.push(issue_1.Issue.atStatement(file, statNode, this.getMessage(), this.getMetadata().key));
|
|
57065
|
+
issues.push(issue_1.Issue.atStatement(file, statNode, this.getMessage(), this.getMetadata().key, this.getConfig().severity));
|
|
57066
57066
|
}
|
|
57067
57067
|
}
|
|
57068
57068
|
return issues;
|
|
@@ -57243,7 +57243,7 @@ class CDSParserError {
|
|
|
57243
57243
|
title: "CDS Parser Error",
|
|
57244
57244
|
shortDescription: `CDS parsing`,
|
|
57245
57245
|
extendedInformation: `Parses CDS and issues parser errors`,
|
|
57246
|
-
tags: [_irule_1.RuleTag.Syntax],
|
|
57246
|
+
tags: [_irule_1.RuleTag.Syntax, _irule_1.RuleTag.SingleFile],
|
|
57247
57247
|
};
|
|
57248
57248
|
}
|
|
57249
57249
|
getConfig() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.114.
|
|
3
|
+
"version": "2.114.3",
|
|
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.114.
|
|
41
|
+
"@abaplint/core": "^2.114.3",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|