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.
27 lines
894 B
Plaintext
27 lines
894 B
Plaintext
// BufAlloc.init returns the state BY VALUE: the caller's local is the
|
|
// allocator state and the FULL buffer is usable. Regression: init used
|
|
// to carve its own struct off the buffer's head (returning *BufAlloc
|
|
// into the buffer), so a 128-byte buffer could only serve 104 bytes —
|
|
// the second 64-byte allocation below failed with null.
|
|
|
|
#import "modules/std.sx";
|
|
#import "modules/std/mem.sx";
|
|
|
|
main :: () {
|
|
stack_buf : [128]u8 = ---;
|
|
buf := BufAlloc.init(@stack_buf[0], 128);
|
|
a : Allocator = xx buf;
|
|
|
|
b1 := a.alloc_bytes(64);
|
|
b2 := a.alloc_bytes(64); // fills the buffer EXACTLY
|
|
b1_ok := b1 != null;
|
|
b2_ok := b2 != null;
|
|
print("full capacity: {} {} pos={}\n", b1_ok, b2_ok, buf.pos);
|
|
|
|
b3 := a.alloc_bytes(1); // one byte over — must fail
|
|
print("over: {}\n", b3 == null);
|
|
|
|
buf.reset();
|
|
print("reset: {}\n", buf.pos);
|
|
}
|