aboutsummaryrefslogtreecommitdiff
path: root/src/pex/instruction.zig
blob: 5edffefc5b5f6230851efcdd0ec6e58ea8988e99 (plain)
1
2
3
4
5
6
7
8
9
const std = @import("std");
const Node = @import("node.zig");

pub const Instruction = union(enum) {
	check: u8,
	call: usize,
	jump: *std.ArrayListUnmanaged(*Node),
	@"return": void,
};