Packages

An experimental work-in-progress (WIP) WebAssembly runtime written in Gleam.

Current section

Files

Jump to
gwr src gwr@syntax@instruction.erl
Raw

src/gwr@syntax@instruction.erl

-module(gwr@syntax@instruction).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export_type([instruction/0]).
-type instruction() :: unreachable |
no_op |
{local_get, integer()} |
i32_add |
{i32_const, integer()} |
'end'.