Files
wasmer/lib/c-api/tests/wasm-c-api/example/reflect.wat
Edoardo Marangoni a4bd0dcd9e feat(api): Update WAT version
Also, rename all occurrences of `set_local` to `local.set`, `get_local`
to `local.get` and `anyfunc` to `funcref`
2024-09-06 14:49:21 +02:00

7 lines
200 B
Plaintext
Vendored

(module
(func (export "func") (param i32 f64 f32) (result i32) (unreachable))
(global (export "global") f64 (f64.const 0))
(table (export "table") 0 50 funcref)
(memory (export "memory") 1)
)