Move examples/*.sx and their expected/ snapshots into per-category subfolders (examples/<category>/...). Folder = leading filename token, with ffi-objc/ffi-jni kept whole; filenames are unchanged. The corpus runner and LSP sweep now discover each category's expected/ dir, while issues/ stays flat. Example 1058's repo-root-relative companion import is made file-relative. Path strings embedded in 164 snapshots were regenerated (path-only changes). Test-layout docs in CLAUDE.md updated.
21 lines
652 B
Plaintext
21 lines
652 B
Plaintext
// Phase 2 step 2.6 (PLAN-FFI.md): xfail then green for the
|
|
// `#jni_method_descriptor("(Sig)Ret")` per-method JNI-descriptor
|
|
// override.
|
|
//
|
|
// The default descriptor is derived from sx types (Phase 2.8); this
|
|
// directive is the escape hatch when the auto-derived signature
|
|
// doesn't match (e.g., synthetic methods, ambiguous overloads,
|
|
// accessing JNI internals). It appears trailing the method's return
|
|
// type, before the terminating `;`.
|
|
|
|
#import "modules/std.sx";
|
|
|
|
Foo :: #jni_class("com/example/Foo") extern {
|
|
weirdMethod :: (self: *Self) -> i32 #jni_method_descriptor("()I");
|
|
}
|
|
|
|
main :: () -> i32 {
|
|
print("parse-only ok\n");
|
|
0
|
|
}
|