Registers a libcall handler
(mut self, handler: LibCallHandler)
| 232 | |
| 233 | /// Registers a libcall handler |
| 234 | pub fn with_libcall_handler(mut self, handler: LibCallHandler) -> Self { |
| 235 | self.libcall_handler = handler; |
| 236 | self |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | impl<'a> State<'a> for InterpreterState<'a> { |
no outgoing calls