pub trait Evaluate { // Required method fn evaluate(&self, universe: &mut Universe) -> Return; }
The trait for evaluating AST nodes.
Evaluate the node within a given universe.