@abaplint/cli 2.104.2 → 2.104.4
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 -2
- package/package.json +5 -5
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;
|
|
@@ -23519,6 +23519,7 @@ class BasicTypes {
|
|
|
23519
23519
|
const attr = token.getStr();
|
|
23520
23520
|
const c = new _object_oriented_1.ObjectOriented(this.scope).searchConstantName(obj, attr);
|
|
23521
23521
|
if (c instanceof class_constant_1.ClassConstant) {
|
|
23522
|
+
this.scope.addReference(firstToken, obj, _reference_1.ReferenceType.ObjectOrientedReference, this.filename);
|
|
23522
23523
|
this.scope.addReference(token, c, _reference_1.ReferenceType.DataReadReference, this.filename);
|
|
23523
23524
|
const val = c.getValue();
|
|
23524
23525
|
if (typeof val === "string") {
|
|
@@ -51035,7 +51036,7 @@ class Registry {
|
|
|
51035
51036
|
}
|
|
51036
51037
|
static abaplintVersion() {
|
|
51037
51038
|
// magic, see build script "version.sh"
|
|
51038
|
-
return "2.104.
|
|
51039
|
+
return "2.104.4";
|
|
51039
51040
|
}
|
|
51040
51041
|
getDDICReferences() {
|
|
51041
51042
|
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.4",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,23 +38,23 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.104.
|
|
41
|
+
"@abaplint/core": "^2.104.4",
|
|
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.4",
|
|
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",
|
|
54
54
|
"minimist": "^1.2.8",
|
|
55
55
|
"mocha": "^10.2.0",
|
|
56
56
|
"progress": "^2.0.3",
|
|
57
|
-
"typescript": "^5.3.
|
|
57
|
+
"typescript": "^5.3.3",
|
|
58
58
|
"webpack": "^5.89.0",
|
|
59
59
|
"webpack-cli": "^5.1.4",
|
|
60
60
|
"xml-js": "^1.6.11"
|