Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
wabt
/
refs/heads/init_expr
/
.
/
test
/
parse
/
assert
/
invoke.txt
blob: fba32549e2f3d2250f6b0232a819b4f3e596a1ef [
file
] [
edit
]
;;; TOOL: wast2json
(module
(export "test" (func $test))
(func $test (param i32) (result i32)
get_local 0
i32.const 100
i32.add))
(invoke "test" (i32.const 1))
(invoke "test" (i32.const 100))
(invoke "test" (i32.const -30))