@abaplint/transpiler-cli 2.4.22 → 2.4.23
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/bundle.js +4 -1
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -76726,7 +76726,10 @@ async function run() {
|
|
|
76726
76726
|
ret += ` clas = unit.addObject("${obj.getName()}");\n`;
|
|
76727
76727
|
for (const file of obj.getABAPFiles()) {
|
|
76728
76728
|
for (const def of file.getInfo().listClassDefinitions()) {
|
|
76729
|
-
if (def.isForTesting === false
|
|
76729
|
+
if (def.isForTesting === false
|
|
76730
|
+
|| def.isGlobal === true
|
|
76731
|
+
|| def.methods.length === 0
|
|
76732
|
+
|| def.isAbstract === true) {
|
|
76730
76733
|
// todo, fix, there might be global test methods
|
|
76731
76734
|
continue;
|
|
76732
76735
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.23",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"bin": {
|
|
6
6
|
"abap_transpile": "./abap_transpile"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"author": "abaplint",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@abaplint/transpiler": "^2.4.
|
|
28
|
+
"@abaplint/transpiler": "^2.4.23",
|
|
29
29
|
"@types/glob": "^7.2.0",
|
|
30
30
|
"glob": "=7.2.0",
|
|
31
31
|
"@types/progress": "^2.0.5",
|