@abaplint/runtime 2.10.44 → 2.10.45

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.
@@ -52,6 +52,7 @@ export declare class HashedTable implements ITable {
52
52
  private readonly loops;
53
53
  private readonly options;
54
54
  private readonly qualifiedName;
55
+ private readonly isStructured;
55
56
  private secondaryIndexes;
56
57
  constructor(rowType: TableRowType, options: ITableOptions, qualifiedName?: string);
57
58
  getArrayLength(): number;
@@ -71,7 +71,7 @@ class HashedTable {
71
71
  this.loops = new Set();
72
72
  this.rowType = rowType;
73
73
  this.options = options;
74
- this.options = options;
74
+ this.isStructured = rowType instanceof structure_1.Structure;
75
75
  if (options?.withHeader === true) {
76
76
  this.header = (0, clone_1.clone)(this.rowType);
77
77
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.10.44",
3
+ "version": "2.10.45",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",