pub trait HasCfg<'a> {
    // Required method
    fn get_cfg(&self) -> &Graph<'a>;
}
Expand description

Trait for types that provide access to a control flow graph.

Required Methods§

source

fn get_cfg(&self) -> &Graph<'a>

Returns a reference to the control flow graph managed by this type.

Implementors§

source§

impl<'a> HasCfg<'a> for Context<'a>