Files
sx/examples/ffi-jni/1400-ffi-jni-call-01-parse.sx
agra 66bdc70bf1 test: group examples into per-category folders
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.
2026-06-21 14:41:34 +03:00

28 lines
911 B
Plaintext

// Phase 1 step 1.2 (PLAN-FFI.md): parser coverage for `#jni_call`
// and `#jni_static_call`. Same `#<intrinsic>(ReturnT)(args...)`
// shape as `#objc_call`; lands green on the existing parse rule
// (Phase 1.1 added all three).
//
// `inline if false` suppresses sema/codegen — the lowering arrives
// in Phase 1.15+; this file pins the parse surface only.
#import "modules/std.sx";
main :: () -> i32 {
inline if false {
env : *void = null;
#jni_env(env) {
// Instance method: target, name, sig, args...
#jni_call(*void)(null, "getWindow", "()Landroid/view/Window;");
// Static method: class, name, sig, args...
#jni_static_call(i32)(null, "max", "(II)I", 3, 7);
// Returning a Java primitive (jboolean → sx bool).
#jni_call(bool)(null, "isShown", "()Z");
}
}
print("parse-only ok\n");
0
}