wac-graph 0.10.0

A library for defining, encoding, and decoding WebAssembly composition graphs.
Documentation
1
2
3
4
5
6
7
8
9
10
(component
  (type (export "f") (func))
  (import "foo" (func))
  (import "i1" (instance))
  (import "merged" (instance
      (export "a" (func))
      (export "b" (func))
  ))
  (export "bar" (func 0))
)