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;
}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;
}