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

Required Methods

Implementations on Foreign Types

Implementors