Enum jazz_vm::opcode::ValueLocation[][src]

pub enum ValueLocation {
    Stack(isize),
    Local(usize),
    Argument(usize),
    ConstInt(i64),
    ConstFloat(f64),
    ConstString(String),
    ConstBool(bool),
    ConstNull,
    ConstObject(usize),
    This,
}

Variants

Methods

impl ValueLocation
[src]

Trait Implementations

impl Clone for ValueLocation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ValueLocation
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ValueLocation
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations