pub trait CompilerEnv: TypeEnv {
    // Required method
    fn find_var(&self, id: &Symbol) -> Option<(Variable<Symbol>, ArcType)>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<'a, T: CompilerEnv> CompilerEnv for &'a T

Implementors§