pub trait ConstructorConsumer {
type Output;
// Required method
fn consume_constructor(&mut self, input: Constructor) -> Self::Output;
}
Expand description
A Consumer trait for constructors in the AST.
pub trait ConstructorConsumer {
type Output;
// Required method
fn consume_constructor(&mut self, input: Constructor) -> Self::Output;
}
A Consumer trait for constructors in the AST.