wasm-tools 1.248.0

CLI tools for interoperating with WebAssembly files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;; RUN: dump %

;; instances
(component
  (type $outer (instance
    (type $local_type (func))
    (export "c5" (component
      (type $nested_func_type (func))
      (alias outer $outer $local_type (type $my_type))
      (import "1" (func (type $nested_func_type)))
      (export "1" (func (type $my_type)))
    ))
  ))
)