Trait kilac::calc::ctx::KilaCtx [] [src]

pub trait KilaCtx: Clone {
    fn get(&self, _: String) -> Result<Ast, String>;
}

Classes that implement KilaCtx returns AST node, that corresponds to the type of getter. Thus either List or Leaf is returned. Can also return empty, which signals for empty getter.

Required Methods

Implementors