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,7 @@
package foo:%from;
interface a {
use foo:foo/only-from@1.0.0.{r};
foo: func();
}

View File

@@ -0,0 +1,5 @@
interface only-from {
record r {}
foo: func() -> r;
}

View File

@@ -0,0 +1,46 @@
package foo:foo@1.0.0;
interface shared-only-from {
variant v {
c1,
}
bar: func(x: v);
use foo:only-from-dep/a.{a};
}
interface shared-items {
type a = u32;
}
world shared-world {
import shared-items;
export shared-items;
type c = u32;
import d: interface {}
}
@since(version = 1.0.0)
interface shared-version-on-from {}
interface shared-version-on-into {}
world shared-world-with-versions {
@since(version = 1.0.0)
import shared-version-on-from;
import shared-version-on-into;
@since(version = 1.0.0)
export shared-version-on-from;
export shared-version-on-into;
}
world shared-world-with-versions-and-include {
import shared-version-on-from;
import shared-version-on-into;
include shared-world-with-versions;
}

View File

@@ -0,0 +1,5 @@
package foo:only-from-dep;
interface a {
type a = u32;
}