nop

nop 代表“无操作”(no-operation)。它实际什么也不做。

试一试

(module
  (func (export "do_nothing")
    nop
  )
)
const url = "{%wasm-url%}";
await WebAssembly.instantiateStreaming(fetch(url)).then((result) => {
  result.instance.exports.do_nothing();
});

语法

wat
nop
指令 二进制操作码
nop 0x01