Function deinit [src]

Prototype

pub fn deinit(self: *VirtualMachine, allocator: std.mem.Allocator) void

Parameters

self: *VirtualMachineallocator: std.mem.Allocator

Source

pub fn deinit(self: *VirtualMachine, allocator: std.mem.Allocator) void { self.stack.deinit(allocator); self.columns.deinit(allocator); self.* = undefined; }