Files
hakorune/lang/src/selfhost/mir_builder/verify.hako

11 lines
290 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// verify.hako — Selfhost MIR verifier (Scaffold)
// Phase20.12b: minimal contract; always OK for now.
static box SelfhostMirVerify {
verify(json_path) {
// TODO: parse JSON and check: block start PHIs, pred coverage, no undefined uses
return 0 // 0=ok (placeholder)
}
}