(index: usize, state: FrameState)
| 1006 | fn frame_blocks( |
| 1007 | instructions: &[Instruction], |
| 1008 | exception_table: &[ExceptionTableEntry], |
| 1009 | ) -> (Vec<usize>, Vec<usize>, Vec<usize>) { |
| 1010 | let mut starts = BTreeSet::from([0usize]); |
| 1011 | for target in branch_targets(instructions) { |
| 1012 | if usize::from(target) < instructions.len() { |
| 1013 | starts.insert(usize::from(target)); |
no outgoing calls
no test coverage detected