@abaplint/transpiler 2.5.39 → 2.5.40
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/src/requires.js +0 -17
- package/package.json +2 -2
package/build/src/requires.js
CHANGED
|
@@ -56,23 +56,6 @@ class Requires {
|
|
|
56
56
|
});
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
// this finds all OO references
|
|
60
|
-
/*
|
|
61
|
-
for (const v of node.getData().references) {
|
|
62
|
-
// todo, use the enum from abaplint, when its exported
|
|
63
|
-
if (v.referenceType === "ObjectOrientedReference"
|
|
64
|
-
&& v.position.getFilename() === filename
|
|
65
|
-
&& v.resolved) {
|
|
66
|
-
add({filename: v.resolved.getFilename(), name: v.resolved.getName().toLowerCase()});
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
for (const c of node.getChildren()) {
|
|
71
|
-
for (const f of this.find(obj, c, filename)) {
|
|
72
|
-
add(f);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
*/
|
|
76
59
|
// always add CX_ROOT, it is used for CATCH, no catches in global interfaces
|
|
77
60
|
// todo, it might be possible to remove this, as CATCH uses instanceof with dynamic registered classes
|
|
78
61
|
if (obj.getType() !== "INTF") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.40",
|
|
4
4
|
"description": "Transpiler",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/src/index.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"author": "abaplint",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@abaplint/core": "^2.95.
|
|
31
|
+
"@abaplint/core": "^2.95.44",
|
|
32
32
|
"source-map": "^0.7.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|