@abaplint/cli 2.104.1 → 2.104.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 +3 -3
- package/package.json +4 -4
package/build/cli.js
CHANGED
|
@@ -4035,7 +4035,7 @@ exports.AttributeName = void 0;
|
|
|
4035
4035
|
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
4036
4036
|
class AttributeName extends combi_1.Expression {
|
|
4037
4037
|
getRunnable() {
|
|
4038
|
-
return (0, combi_1.regex)(/^(\/\w+\/)?[\w\d_
|
|
4038
|
+
return (0, combi_1.regex)(/^(\/\w+\/)?[\w\d_\*\~%]+$/);
|
|
4039
4039
|
}
|
|
4040
4040
|
}
|
|
4041
4041
|
exports.AttributeName = AttributeName;
|
|
@@ -28235,7 +28235,7 @@ class Assign {
|
|
|
28235
28235
|
sourceType = new source_1.Source().runSyntax(theSource, scope, filename);
|
|
28236
28236
|
}
|
|
28237
28237
|
if ((assignSource === null || assignSource === void 0 ? void 0 : assignSource.getChildren().length) === 5
|
|
28238
|
-
&& ((_a = assignSource === null || assignSource === void 0 ? void 0 : assignSource.getFirstChild()) === null || _a === void 0 ? void 0 : _a.concatTokens()) === "COMPONENT") {
|
|
28238
|
+
&& ((_a = assignSource === null || assignSource === void 0 ? void 0 : assignSource.getFirstChild()) === null || _a === void 0 ? void 0 : _a.concatTokens().toUpperCase()) === "COMPONENT") {
|
|
28239
28239
|
const componentSource = sources[sources.length - 2];
|
|
28240
28240
|
const componentType = new source_1.Source().runSyntax(componentSource, scope, filename);
|
|
28241
28241
|
if (new _type_utils_1.TypeUtils(scope).isAssignable(componentType, new basic_1.CharacterType(30)) === false) {
|
|
@@ -51035,7 +51035,7 @@ class Registry {
|
|
|
51035
51035
|
}
|
|
51036
51036
|
static abaplintVersion() {
|
|
51037
51037
|
// magic, see build script "version.sh"
|
|
51038
|
-
return "2.104.
|
|
51038
|
+
return "2.104.3";
|
|
51039
51039
|
}
|
|
51040
51040
|
getDDICReferences() {
|
|
51041
51041
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.104.
|
|
3
|
+
"version": "2.104.3",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.104.
|
|
41
|
+
"@abaplint/core": "^2.104.3",
|
|
42
42
|
"@types/chai": "^4.3.11",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|
|
45
45
|
"@types/mocha": "^10.0.6",
|
|
46
|
-
"@types/node": "^20.10.
|
|
46
|
+
"@types/node": "^20.10.3",
|
|
47
47
|
"@types/progress": "^2.0.7",
|
|
48
48
|
"chai": "^4.3.10",
|
|
49
49
|
"chalk": "^5.3.0",
|
|
50
|
-
"eslint": "^8.
|
|
50
|
+
"eslint": "^8.55.0",
|
|
51
51
|
"glob": "^7.2.3",
|
|
52
52
|
"json5": "^2.2.3",
|
|
53
53
|
"memfs": "^4.6.0",
|