Save a compilation context.
(&self, mut context: CompilationContext, allocs: FuncValidatorAllocations)
| 62 | |
| 63 | /// Save a compilation context. |
| 64 | fn save_context(&self, mut context: CompilationContext, allocs: FuncValidatorAllocations) { |
| 65 | context.allocations = allocs; |
| 66 | self.contexts.lock().unwrap().push(context); |
| 67 | } |
| 68 | |
| 69 | /// Emit unwind info into the [`CompiledFunction`]. |
| 70 | fn emit_unwind_info( |
no test coverage detected