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,3 @@
package foo:another-pkg;
interface other-interface {}

View File

@@ -0,0 +1,4 @@
package foo:corp;
interface saas {
}

View File

@@ -0,0 +1,2 @@
package foo:different-pkg;
interface i {}

View File

@@ -0,0 +1,5 @@
package foo:foreign-pkg;
interface the-default {
type some-type = u32;
}

View File

@@ -0,0 +1,13 @@
package foo:some-pkg;
interface the-default {
type from-default = string;
}
interface some-interface {
type another-type = u32;
}
interface another-interface {
type yet-another-type = u8;
}

View File

@@ -0,0 +1,5 @@
package foo:wasi;
interface clocks {
type timestamp = u64;
}

View File

@@ -0,0 +1,7 @@
package foo:wasi;
interface filesystem {
record stat {
ino: u64
}
}