Struct teko::data_structures::Env [] [src]

pub struct Env {
    pub store: HashMap<String, Program>,
    pub params: Vec<Program>,
    pub result: Statement,
}

Environment used by the implementation

Fields

Maps variables to stacks of variables (Program)

Parameter stack used for function calls

Register used to store results of previous computations