Structs§
- Chunk
- A compiled chunk of bytecode with its constant pools.
- Runtime
SubDecl subbody registered at run time (e.g.BEGIN { sub f { ... } }), mirrored fromcrate::interpreter::Interpreter::exec_statementStmtKind::SubDecl.
Enums§
- Builtin
Id - Built-in function IDs for CallBuiltin dispatch.
- Op
- Stack-based bytecode instruction set for the stryke VM. Operands use u16 for pool indices (64k names/constants) and i32 for jumps.
Constants§
- GP_
CHECK - GP_END
- GP_INIT
- GP_RUN
- GP_
START ${^GLOBAL_PHASE}values emitted withOp::SetGlobalPhase(matches Perl’s phase strings).- GP_
UNITCHECK - Reserved; stock Perl 5 keeps
${^GLOBAL_PHASE}asSTARTduringUNITCHECKblocks.