Skip to main content

ConstEnv

Type Alias ConstEnv 

Source
pub type ConstEnv = HashMap<String, ConstValue>;
Expand description

Environment mapping a const name to its already-folded value. The typechecker primes this with bindings encountered earlier in the same file (i.e. const X: int = 1 lets const Y: int = X + 2 resolve).

Aliased Typeยง

pub struct ConstEnv { /* private fields */ }