Enum little::Mem [] [src]

pub enum Mem {
    Const(Constant),
    Binding(Binding),
    Parameter {
        name: Constant,
    },
    Parameters,
    StackTop1,
    StackTop2,
}

Memory location.

This may be required by Output, Push or Load instructions.

Variants

Constant item.

Binding.

Parameter with name.

Fields of Parameter

All parameters.

Last value on stack.

Last - 1 value on stack.

Trait Implementations

impl Copy for Mem
[src]

impl Clone for Mem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Mem
[src]

Formats the value using the given formatter.