@abaplint/runtime 2.13.85 → 2.13.86

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.
@@ -153,7 +153,11 @@ function createData(target, options) {
153
153
  target.assign(new types_1.DecFloat34());
154
154
  break;
155
155
  default:
156
- if (abap.DDIC[options.typeName.trimEnd()]) {
156
+ if (abap.DDIC[options.typeName.trimEnd()] && options.table) {
157
+ // static "TYPE STANDARD TABLE OF <ddic>", same as the dynamic name variant above
158
+ target.assign(new abap.types.Table(abap.DDIC[options.typeName.trimEnd()].type(), tableOptions));
159
+ }
160
+ else if (abap.DDIC[options.typeName.trimEnd()]) {
157
161
  target.assign(abap.DDIC[options.typeName.trimEnd()].type().clone());
158
162
  }
159
163
  else if (options.typeName.includes("=>")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.13.85",
3
+ "version": "2.13.86",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",
@@ -33,7 +33,7 @@
33
33
  "@types/mocha": "^10.0.10",
34
34
  "@types/node": "^26.4.1",
35
35
  "chai": "^6.2.2",
36
- "mocha": "^12.0.0",
36
+ "mocha": "^12.0.1",
37
37
  "source-map-support": "^0.5.21",
38
38
  "typescript": "^6.0.3"
39
39
  },