@abaplint/cli 2.104.3 → 2.104.5
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 -1
- package/package.json +4 -4
package/build/cli.js
CHANGED
|
@@ -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") {
|
|
@@ -48724,6 +48725,7 @@ class RenameTable {
|
|
|
48724
48725
|
let changes = [];
|
|
48725
48726
|
const helper = new renamer_helper_1.RenamerHelper(this.reg);
|
|
48726
48727
|
changes = changes.concat(helper.buildXMLFileEdits(obj, "TABNAME", oldName, newName));
|
|
48728
|
+
changes = changes.concat(helper.buildXMLFileEdits(obj, "FORTABLE", oldName, newName));
|
|
48727
48729
|
changes = changes.concat(helper.renameFiles(obj, oldName, newName));
|
|
48728
48730
|
changes = changes.concat(helper.renameDDICCodeReferences(obj, oldName, newName));
|
|
48729
48731
|
changes = changes.concat(helper.renameDDICTABLReferences(obj, oldName, newName));
|
|
@@ -51035,7 +51037,7 @@ class Registry {
|
|
|
51035
51037
|
}
|
|
51036
51038
|
static abaplintVersion() {
|
|
51037
51039
|
// magic, see build script "version.sh"
|
|
51038
|
-
return "2.104.
|
|
51040
|
+
return "2.104.5";
|
|
51039
51041
|
}
|
|
51040
51042
|
getDDICReferences() {
|
|
51041
51043
|
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.5",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.104.
|
|
41
|
+
"@abaplint/core": "^2.104.5",
|
|
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",
|
|
@@ -54,7 +54,7 @@
|
|
|
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"
|