WebAssembly variable instructions
WebAssembly variable instructions.
localDeclare a new local variable.
local.getLoad the value of a local variable onto the stack.
local.setSet the value of a local variable.
local.teeSet the value of a local variable and keep the value on the stack.
globalDeclare a new global variable.
global.getLoad the value of a global variable onto the stack.
global.setSet the value of a global variable.