Represents a block which will not return a value
pub const BlockType = enum(u8)
pub const BlockType = enum(u8) {
empty = 0x40,
i32 = 0x7F,
i64 = 0x7E,
f32 = 0x7D,
f64 = 0x7C,
v128 = 0x7B,
pub fn fromValtype(valtype: Valtype) BlockType {
return @fromBackingInt(@intCast(@backingInt(valtype)));
}
}