wasm-tools 1.240.0

CLI tools for interoperating with WebAssembly files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;; RUN: wast --assert default --snapshot tests/snapshots %

(module
  (type (;0;) (func (result i32)))
  (func $main (type 0) (result i32)
    block (result i32)  ;; label = @1
      loop (result i32)  ;; label = @2
        i32.const 77
        i32.const 0
        br_if 0 (;@2;)
        br 1 (;@1;)
      end
    end
  )
  (export "main" (func $main))
)