@abaplint/transpiler 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.
@@ -124,7 +124,10 @@ async function run() {
124
124
  ret += ` clas = unit.addObject("${obj.getName()}");\n`;
125
125
  for (const file of obj.getABAPFiles()) {
126
126
  for (const def of file.getInfo().listClassDefinitions()) {
127
- if (def.isForTesting === false || def.isGlobal === true || def.methods.length === 0) {
127
+ if (def.isForTesting === false
128
+ || def.isGlobal === true
129
+ || def.methods.length === 0
130
+ || def.isAbstract === true) {
128
131
  // todo, fix, there might be global test methods
129
132
  continue;
130
133
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "2.4.22",
3
+ "version": "2.4.23",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",