(a: &FrameValue, b: &FrameValue, is_live: bool)
| 1125 | |method| { |
| 1126 | format!( |
| 1127 | "{instruction:?} => {}.{}{}", |
| 1128 | method.class_name, method.method_name, method.descriptor |
| 1129 | ) |
| 1130 | }, |
| 1131 | ) |
| 1132 | } |
| 1133 | |
| 1134 | fn instruction_window( |
| 1135 | instructions: &[Instruction], |
| 1136 | center: usize, |
| 1137 | constant_pool: &ConstantPool, |
| 1138 | ) -> String { |
no test coverage detected