lang migration: rename signed integer types sN -> iN
Mechanical sweep of all .sx sources and plan docs (PLAN.md, current/, .agents/) for the sx language rename (s8/s16/s32/s64 -> i8/i16/i32/i64). Verified: make build + make test, 14/14.
This commit is contained in:
@@ -178,14 +178,14 @@ check_artifact_metadata :: () -> bool {
|
||||
return a.metadata == "{\"min_os\":\"14\"}";
|
||||
}
|
||||
|
||||
run_case :: (label: string, ok: bool) -> s32 {
|
||||
run_case :: (label: string, ok: bool) -> i32 {
|
||||
if ok { print(" PASS {}\n", label); return 0; }
|
||||
print(" FAIL {}\n", label);
|
||||
return 1;
|
||||
}
|
||||
|
||||
main :: () -> s32 {
|
||||
failures : s32 = 0;
|
||||
main :: () -> i32 {
|
||||
failures : i32 = 0;
|
||||
failures += run_case("accept: valid app", check_accepts_app());
|
||||
failures += run_case("accept: valid release", check_accepts_release());
|
||||
failures += run_case("accept: valid artifact", check_accepts_artifact());
|
||||
|
||||
Reference in New Issue
Block a user