Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modifiedtest/fixtures/test.wasm
Binary file not shown.
10 changes: 10 additions & 0 deletions test/fixtures/test.wat
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
;; Compiled using the WebAssembly Tootkit (https://github.com/WebAssembly/wabt)
;; $ wat2wasm test.wat -o test.wasm
(module
(func $add (export "add") (param $first i32) (param $second i32) (result i32)
get_local $first
get_local $second
(i32.add)
)
(export "addTwo" (func $add))
)