Surface rename of the signed integer family: s1..s64 become i1..i64
(u1..u64, usize, isize unchanged). 'string' keeps the s-prefix arm in
name classification; width parsing moves to the i-prefix arm next to
isize.
Internal TypeId tags follow the surface (.s8/.s16/.s32/.s64 ->
.i8/.i16/.i32/.i64), as do mono-key mangle fragments (ptr_i64,
tu_i64_bool) and all display/diagnostic formatting (i{d}).
Migrated in the same sweep: stdlib + examples + issue repros + FFI C
companions (shared symbol names like ffi_id_i64), expected
stdout/stderr/ir snapshots, specs.md, readme.md, CLAUDE.md/AGENTS.md,
implementation_plan.md, docs/, issue writeups. Vendored stb_image and
historical flow state left untouched.
zig build test: 426/426; examples suite: 595/595.
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
// `#import c` foreign-name exemption: C names that collide with sx's reserved
|
|
// type spellings import unedited. Foreign decls are treated as RAW — their names
|
|
// are never type-classified nor reserved-checked — so the generated `#foreign`
|
|
// bindings import and call without hand-edits (no backticks needed). This covers
|
|
// parameter names (`i1`/`i2`), a function whose own NAME is a reserved spelling
|
|
// (`i2`), and bare-calling that function (its callee spelling parses as a type
|
|
// but resolves to the foreign fn). Before issue 0089 the params errored with
|
|
// "'i1' is a reserved type name and cannot be used as an identifier", and the
|
|
// bare call errored with "unresolved 'i2'".
|
|
// Regression (issue 0089).
|
|
#import "modules/std.sx";
|
|
|
|
#import c {
|
|
#include "1220-ffi-c-import-reserved-name-params.h";
|
|
#source "1220-ffi-c-import-reserved-name-params.c";
|
|
};
|
|
|
|
main :: () -> i32 {
|
|
print("pick(10,20,0) = {}\n", ffi_pick(10, 20, 0));
|
|
print("pick(10,20,1) = {}\n", ffi_pick(10, 20, 1));
|
|
print("sum(10,20) = {}\n", ffi_sum(10, 20));
|
|
print("i2(4) bare = {}\n", i2(4));
|
|
0
|
|
}
|