(&mut self, arg: MemArg)
| 2837 | } |
| 2838 | |
| 2839 | fn visit_memory_atomic_wait32(&mut self, arg: MemArg) -> Self::Output { |
| 2840 | self.emit_atomic_wait(&arg, AtomicWaitKind::Wait32) |
| 2841 | } |
| 2842 | |
| 2843 | fn visit_memory_atomic_wait64(&mut self, arg: MemArg) -> Self::Output { |
| 2844 | self.emit_atomic_wait(&arg, AtomicWaitKind::Wait64) |
nothing calls this directly
no test coverage detected