Move examples/*.sx and their expected/ snapshots into per-category subfolders (examples/<category>/...). Folder = leading filename token, with ffi-objc/ffi-jni kept whole; filenames are unchanged. The corpus runner and LSP sweep now discover each category's expected/ dir, while issues/ stays flat. Example 1058's repo-root-relative companion import is made file-relative. Path strings embedded in 164 snapshots were regenerated (path-only changes). Test-layout docs in CLAUDE.md updated.
21 lines
770 B
Plaintext
21 lines
770 B
Plaintext
// Regression: `#import` inside the body of a top-level
|
|
// `inline if OS == .X { ... }` block. The imports.zig flatten pass
|
|
// (issue-0042) lifts these to the top level before resolution; the
|
|
// parser arm in `parseStmt` that accepts them was missing on macOS /
|
|
// iOS / linux until this commit, so chess's
|
|
// `inline if OS == .android { #import "modules/platform/android.sx"; }`
|
|
// pattern broke parse on every non-Android target.
|
|
//
|
|
// The body here also carries a global decl to mirror chess's shape —
|
|
// the prior bug was specifically about hash_import inside an inline-if
|
|
// body, not the global decl alongside it.
|
|
|
|
#import "modules/std.sx";
|
|
|
|
inline if OS == .android {
|
|
#import "modules/std.sx";
|
|
g_android_only : i32 = 0;
|
|
}
|
|
|
|
main :: () { print("ok\n"); }
|