(&mut self, index: u32)
| 2054 | } |
| 2055 | |
| 2056 | fn visit_local_tee(&mut self, index: u32) -> Self::Output { |
| 2057 | let typed_reg = self.emit_set_local(index)?; |
| 2058 | self.context.stack.push(typed_reg.into()); |
| 2059 | |
| 2060 | Ok(()) |
| 2061 | } |
| 2062 | |
| 2063 | fn visit_global_get(&mut self, global_index: u32) -> Self::Output { |
| 2064 | let index = GlobalIndex::from_u32(global_index); |
nothing calls this directly
no test coverage detected