pub trait InjectVars {
    // Required method
    fn take_vars(&mut self) -> Vec<VarDeclarator>;
}
Expand description

Implemented for passes which inject variables.

If a pass depends on other pass which injects variables, this trait can be used to keep the variables.

Required Methods§

source

fn take_vars(&mut self) -> Vec<VarDeclarator>

Implementors§

source§

impl<V> InjectVars for Folder<V>
where V: VisitMut + InjectVars,