Files
sx/examples/1417-ffi-jni-class-07-all-runtimes.sx
agra 811a280517 refactor(ffi-linkage): Phase 9.3 — purge 'foreign' from comments (src caps + examples + docs)
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.
2026-06-15 10:52:56 +03:00

48 lines
1.4 KiB
Plaintext

// Phase 2 step 2.7 (PLAN-FFI.md): xfail then green for the remaining
// six type-introducer directive forms parsing with the same body
// grammar as `#jni_class`. No codegen yet — Phase 3 picks up Obj-C
// codegen, Phase 4 picks up Swift.
//
// The directives this step turns on:
// #jni_interface — Java interface binding
// #objc_class — Obj-C class binding
// #objc_protocol — Obj-C protocol binding
// #swift_class — Swift class binding (via @_cdecl bridge)
// #swift_struct — Swift @frozen value-type binding
// #swift_protocol — Swift @objc-bridgeable protocol binding
//
// Internally the AST collapses into one `runtime_class_decl` node
// carrying a `runtime` discriminator. Today the parser rejects each
// of these because the lexer doesn't recognise the directive name.
#import "modules/std.sx";
IFoo :: #jni_interface("com/example/IFoo") extern {
bar :: (self: *Self) -> i32;
}
NSString :: #objc_class("NSString") extern {
length :: (self: *Self) -> i32;
}
NSCopying :: #objc_protocol("NSCopying") extern {
copy :: (self: *Self) -> *Self;
}
URL :: #swift_class("Foundation.URL") extern {
absoluteString :: (self: *Self) -> *void;
}
Date :: #swift_struct("Foundation.Date") extern {
timeIntervalSince1970 :: (self: *Self) -> f64;
}
Hashable :: #swift_protocol("Swift.Hashable") extern {
hash :: (self: *Self) -> i32;
}
main :: () -> i32 {
print("parse-only ok\n");
0
}