pub trait SSAEnvironment {
fn add_variable_scope(&mut self);
fn remove_variable_scope(&mut self);
}Expand description
An environment used to track variable versions across a CFG.
Required Methods
sourcefn add_variable_scope(&mut self)
fn add_variable_scope(&mut self)
Enter variable scope.
sourcefn remove_variable_scope(&mut self)
fn remove_variable_scope(&mut self)
Leave variable scope.