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
11
12
package test:foo;

world my-world {
    use my-interface.{my-resource};
    type my-resource2 = my-resource;

    export my-func: func(r: my-resource2);
}

interface my-interface {
    resource my-resource {}
}