- objc.sx, objc_block.sx (from std/) + sdl3/opengl/raylib/stb/stb_truetype/ wasm vendor bindings (from modules/ root) -> modules/ffi/ - std/uikit.sx deleted: platform/uikit.sx already declares UIApplicationMain and imports objc; '#framework "UIKit"' cannot live in a file imported on macOS targets (unconditional link directive, UIKit is iOS-only), so the three iOS-only examples carry the 3-line glue inline. 1607/1608/1616 also un-rotted (dead ns_string -> 'xx "..."' Into conversions, callconv(.c) msgSend fn-ptrs) — all three build for ios-sim/ios again. - math/math.sx -> math/scalar.sx; one spelling '#import "modules/math"' everywhere (4 pinned IR snapshots regenerated: dir import adds Vec2/Mat4 to the type tables). - compiler.sx -> build.sx (imports, CLAUDE.md bundling table, specs.md). - testpkg/ + test_c.sx -> tests/fixtures/ (resolve CWD-relative from repo root, same as vendors/). - library-internal imports use full modules/... paths (std.sx tail, platform/bundle.sx, fixtures).
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
// Phase 3 step 3.0: one-arg selector mangling. `addObject(o)` derives
|
|
// `addObject:` — the sx method name becomes the keyword, a single
|
|
// trailing `:` for the single arg. Selector arity (count of `:`) must
|
|
// equal sx-side arity excluding self.
|
|
//
|
|
// Pre-3.0: bails at lower.zig with the Phase 3/4 diagnostic.
|
|
#import "modules/std.sx";
|
|
#import "modules/build.sx";
|
|
#import "modules/ffi/objc.sx";
|
|
|
|
SxProbeOneArg :: #foreign #objc_class("SxProbeOneArg") {
|
|
addObject :: (self: *Self, val: s32) -> s32;
|
|
}
|
|
|
|
addObject_imp :: (self: *void, _cmd: *void, val: s32) -> s32 callconv(.c) {
|
|
val * 2
|
|
}
|
|
|
|
main :: () -> s32 {
|
|
inline if OS == .macos {
|
|
ns_object := objc_getClass("NSObject".ptr);
|
|
cls := objc_allocateClassPair(ns_object, "SxProbeOneArg".ptr, 0);
|
|
sel := sel_registerName("addObject:".ptr);
|
|
class_addMethod(cls, sel, xx addObject_imp, "i@:i".ptr);
|
|
objc_registerClassPair(cls);
|
|
|
|
inst : *SxProbeOneArg = xx class_createInstance(cls, 0);
|
|
n := inst.addObject(21);
|
|
print("addObject(21) = {}\n", n);
|
|
}
|
|
inline if OS != .macos {
|
|
print("skipped (not macos)\n");
|
|
}
|
|
0
|
|
}
|