// Self-hosted parser baseline (placeholder).
// The parser is the second self-hosting component โ€” hand optimization
// comes after the compiler reaches correctness parity.
//
// This placeholder enables `trident bench` discovery while the real
// baseline is developed alongside the self-hosting effort.

__parse:
    return

__dispatch:
    return

__emit_node:
    return

__backpatch:
    return

__push_frame:
    return

__pop_frame:
    return

__tok_kind:
    return

__advance:
    return

Neighbours