pub trait IntoStatementRange {
// Required method
fn into_statement_range(self, func: &Function) -> Range<usize>;
}Expand description
Convertable into a range of statements.
Required Methods§
Sourcefn into_statement_range(self, func: &Function) -> Range<usize>
fn into_statement_range(self, func: &Function) -> Range<usize>
Converts Self into a range of statements for function func.