mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-22 16:35:33 +00:00
Also, rename all occurrences of `set_local` to `local.set`, `get_local` to `local.get` and `anyfunc` to `funcref`
7 lines
200 B
Plaintext
Vendored
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)
|
|
)
|