pub trait FunctionConsumer {
type Output;
// Required method
fn consume_function(&mut self, input: Function) -> Self::Output;
}
Expand description
A Consumer trait for functions in the AST.
pub trait FunctionConsumer {
type Output;
// Required method
fn consume_function(&mut self, input: Function) -> Self::Output;
}
A Consumer trait for functions in the AST.