wasm-tools 1.246.2

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

(module
  (table 1 funcref)
  (table 1 funcref)

  (elem (i32.const 0) func)
  (elem func)
  (elem (table 1) (i32.const 0) func)
  (elem declare func)
  (elem (i32.const 0) funcref)
  (elem funcref)
  (elem (table 1) (i32.const 0) funcref)
  (elem declare funcref)
)