chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

View File

@@ -0,0 +1,78 @@
/// package docs;
package foo:foo;
/// interface docs
interface coverage-iface {
/// basic typedef docs
type t = u32;
/// record typedef docs
record r {
/// record field docs
f1: u8,
f2: u8,
}
flags fl {
/// flag docs
f1,
f2,
}
variant v {
/// variant case docs
c1(u8),
c2,
}
enum e {
/// enum case docs
c1,
c2,
}
resource res {
/// constructor docs
constructor();
/// method docs
m: func();
/// static func docs
s: static func();
}
/// interface func docs
f: func();
}
/// other comment forms
/// multi-line block
interface other-comment-forms {
/// one doc line
/// non-doc in the middle
/// another doc line
multiple-lines-split: func();
/// mixed forms; line doc
/// plus block doc
/// multi-line
mixed-forms: func();
}
/// world docs
world coverage-world {
/// world typedef docs
type t = u32;
/// world func import docs
import imp: func();
/// world func export docs
export exp: func();
/// world inline interface docs
export i: interface {
/// inline interface typedef docs
type t = u32;
/// inline interface func docs
f: func();
}
}