(obj)
| 24 | } |
| 25 | |
| 26 | function addHeapObject(obj) { |
| 27 | if (heap_next === heap.length) heap.push(heap.length + 1); |
| 28 | const idx = heap_next; |
| 29 | heap_next = heap[idx]; |
| 30 | |
| 31 | heap[idx] = obj; |
| 32 | return idx; |
| 33 | } |
| 34 | |
| 35 | let WASM_VECTOR_LEN = 0; |
| 36 |
no test coverage detected