Function deinit [src]
Prototype
pub fn deinit(self: *UnwindContext) void
Parameters
self: *UnwindContext
Source
pub fn deinit(self: *UnwindContext) void {
self.vm.deinit(self.allocator);
self.stack_machine.deinit(self.allocator);
self.allocator.destroy(self.thread_context);
self.* = undefined;
}