(type, mutability, supertype_idx = kNoSuperType, is_final = false)
| 1001 | } |
| 1002 | |
| 1003 | addArray(type, mutability, supertype_idx = kNoSuperType, is_final = false) { |
| 1004 | this.types.push(new WasmArray(type, mutability, is_final, supertype_idx)); |
| 1005 | return this.types.length - 1; |
| 1006 | } |
| 1007 | |
| 1008 | static defaultFor(type) { |
| 1009 | switch (type) { |
no test coverage detected