Trait Eval
pub trait Eval {
type Output;
// Required method
fn eval(
self,
vm: &mut Vm<'_>,
) -> Result<Self::Output, EcoVec<SourceDiagnostic>>;
}
Expand description
Evaluate an expression.
Required Associated Types§
type Output
type Output
The output of evaluating the expression.