src/: ~21 capital-Foreign comments the case-sensitive verify grep missed (Foreign-class→Runtime-class, Foreign path→Runtime path, Foreign decls→Extern decls, FOREIGN function→extern function) across calls/inst/ffi_objc/jni_descriptor/emit_llvm/ c_import/lower.*/ops. src 'foreign' now = ONLY the hash_foreign token + 4 rejection messages (9.0-delete targets). examples/*.sx comments → extern/runtime-class (1219 stdout regen; KEPT 1176). docs/inline-asm-design + debugger purged. Comments only — no build impact. 9.0 ratified: DELETE hash_foreign token next.
31 lines
990 B
Plaintext
31 lines
990 B
Plaintext
// A reserved/builtin type name used as a PARAMETER name is rejected inside the
|
|
// two method-with-body forms that carry their params as bare name lists rather
|
|
// than `Param` nodes: a protocol default-body method (`u8`) and a sx-defined
|
|
// runtime-class (`#objc_class`) method (`i16`). The declaration-site diagnostic
|
|
// underlines the OFFENDING PARAMETER itself, not the enclosing `protocol` /
|
|
// `#objc_class` block — each method's `param_name_spans` is threaded from the
|
|
// parser so the caret lands on the parameter token.
|
|
//
|
|
// Regression (issue 0076, attempt-5 span precision). Expected: one error per
|
|
// offending parameter, each caret on the parameter name; exit 1.
|
|
#import "modules/std.sx";
|
|
#import "modules/build.sx";
|
|
|
|
Greeter :: protocol {
|
|
greet :: (self: *Self, u8: i64) -> i64 {
|
|
return u8;
|
|
}
|
|
}
|
|
|
|
SxFoo :: #objc_class("SxFoo") {
|
|
counter: i32;
|
|
|
|
bump :: (self: *Self, i16: i32) {
|
|
self.counter += i16;
|
|
}
|
|
}
|
|
|
|
main :: () -> i32 {
|
|
return 0;
|
|
}
|