Reference Types
(&mut self, ty: wasmparser::HeapType)
| 421 | |
| 422 | // Reference Types |
| 423 | fn visit_ref_null(&mut self, ty: wasmparser::HeapType) -> Self::Output { |
| 424 | match convert_heaptype(ty) { |
| 425 | Ok(ty) => self.instructions.push(Instruction::RefNull(ty)), |
| 426 | Err(err) => { |
| 427 | self.error.get_or_insert(err); |
| 428 | } |
| 429 | }; |
| 430 | } |
| 431 | |
| 432 | fn visit_typed_select_multi(&mut self, tys: Vec<wasmparser::ValType>) -> Self::Output { |
| 433 | let (c32, c64, c128) = Self::label_keep_counts(&tys); |
nothing calls this directly
no test coverage detected