witnext 0.10.0-beta3

witx parser for the witx-codegen webassembly code generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
(module $multi
  (use ($x as $other_x) ($y as $other_y) from $other)

  ;; this resource named `y` shouldn't be the same as another resource named `y`
  ;; defined elsewhere.
  (resource $y)

  (typename $x1 (handle $other_x))
  (typename $x2 (handle $other_x))

  (typename $y1 (handle $other_y))
  (typename $y2 (handle $y))
)