(type)
| 1570 | } |
| 1571 | |
| 1572 | addCont(type) { |
| 1573 | let type_index = (typeof type) == 'number' ? type : this.addType(type); |
| 1574 | this.types.push(new WasmCont(type_index)); |
| 1575 | return this.types.length - 1; |
| 1576 | } |
| 1577 | |
| 1578 | |
| 1579 | nextTypeIndex() { return this.types.length; } |
no test coverage detected