Trait ligen_core::ir::processing::ReplaceIdentifier[][src]

pub trait ReplaceIdentifier {
    fn replace_identifier(&mut self, old: &Identifier, new: &Identifier);
}
Expand description

Trait to replace identifiers in IR AST.

Required methods

Replace all occurrences of the old identifier by the new identifier.

Implementors