ParseWithConstMap

Trait ParseWithConstMap 

Source
pub trait ParseWithConstMap {
    // Required method
    fn parse_with_constmap<'a>(
        tokens: &'a [Token],
        const_map: &HashMap<String, ImmediateValue>,
    ) -> Result<(Self, &'a [Token]), CompileError>
       where Self: Sized;
}

Required Methods§

Source

fn parse_with_constmap<'a>( tokens: &'a [Token], const_map: &HashMap<String, ImmediateValue>, ) -> Result<(Self, &'a [Token]), CompileError>
where Self: Sized,

Implementors§