(type, mutability, supertype_idx = kNoSuperType, is_final = false,
is_shared = false)
| 1563 | } |
| 1564 | |
| 1565 | addArray(type, mutability, supertype_idx = kNoSuperType, is_final = false, |
| 1566 | is_shared = false) { |
| 1567 | this.types.push( |
| 1568 | new WasmArray(type, mutability, is_final, is_shared, supertype_idx)); |
| 1569 | return this.types.length - 1; |
| 1570 | } |
| 1571 | |
| 1572 | addCont(type) { |
| 1573 | let type_index = (typeof type) == 'number' ? type : this.addType(type); |
no test coverage detected