Update to the latest wit-parser (#5694)

This notably pulls in support in WIT for types-in-worlds.
This commit is contained in:
Alex Crichton
2023-02-02 13:21:01 -06:00
committed by GitHub
parent 545749b279
commit a2a0a9ef5b
6 changed files with 53 additions and 20 deletions

View File

@@ -0,0 +1,14 @@
interface i {
type t = u16
}
default world foo {
use self.i.{t as u}
type t = u32
record r {
}
export f: func() -> tuple<t, u, r>
}