pub trait ProgramScopeConsumer {
type Output;
// Required method
fn consume_program_scope(&mut self, input: ProgramScope) -> Self::Output;
}
Expand description
A Consumer trait for program scopes in the AST.
pub trait ProgramScopeConsumer {
type Output;
// Required method
fn consume_program_scope(&mut self, input: ProgramScope) -> Self::Output;
}
A Consumer trait for program scopes in the AST.