(self, functions: FunctionStore<'a>)
| 227 | |
| 228 | impl<'a> InterpreterState<'a> { |
| 229 | pub fn with_function_store(self, functions: FunctionStore<'a>) -> Self { |
| 230 | Self { functions, ..self } |
| 231 | } |
| 232 | |
| 233 | /// Registers a libcall handler |
| 234 | pub fn with_libcall_handler(mut self, handler: LibCallHandler) -> Self { |
no outgoing calls