pub trait ClassCore {
// Required methods
fn instructions(&mut self) -> &mut Vec<Instruction>;
fn visit_node(&mut self, node: &Node);
}pub trait ClassCore {
// Required methods
fn instructions(&mut self) -> &mut Vec<Instruction>;
fn visit_node(&mut self, node: &Node);
}