about summary refs log tree commit diff
path: root/users/tazjin/rlox/src/bytecode/opcode.rs
blob: f2b6a9f1baf30f11dc96b98f13073eff03207659 (plain) (blame)
1
2
3
4
5
6
7
8
#[derive(Debug)]
pub enum OpCode {
    /// Access a constant for use.
    OpConstant(usize),

    /// Return from the current function.
    OpReturn,
}