blob: 0f070ce9fffc0df7fdb5971e1f6f1b8c426693bb (
plain) (
tree)
|
|
#[derive(Debug)]
pub enum OpCode {
/// Access a constant for use.
OpConstant(usize),
/// Return from the current function.
OpReturn,
/// Unary negation
OpNegate,
// Arithmetic operators
OpAdd,
OpSubtract,
OpMultiply,
OpDivide,
}
|