Q62EXKAKNM5FMIW3UZBUAJFKOZLE2O2VIRTJAVDOTTSWX5JSMX4QC
]
end
end
defp u32(<<0::1, _::7, rest::binary>> = chunk) do
<<val::binary-size(1), _::binary>> = chunk
[
{:add_acc, WaParser.LEB128.decode_unsigned(val), rest}
]
end
defp get_bytes(_chunk) do
[
{:pop_and_cont, &read_bytes/1}
]
end
defp read_bytes(count) do
fn <<bytes::binary-size(count), rest::binary>> ->
[
{:add_acc, bytes, rest}