(
stack: &[FrameValue],
constant_pool: &mut InternedConstantPool,
verification_class_cache: &mut HashMap<String, u16>,
)
| 1607 | let method = method_ref_info(constant_pool, *method_ref, true)?; |
| 1608 | apply_invoke( |
| 1609 | &mut state, |
| 1610 | &method, |
| 1611 | false, |
| 1612 | false, |
| 1613 | context, |
| 1614 | instruction_index, |
| 1615 | )?; |
| 1616 | } |
| 1617 | |
| 1618 | I::New(class_index) => { |
| 1619 | let _ = constant_pool.try_get_class(*class_index)?; |
| 1620 | state |
| 1621 | .stack |
no test coverage detected