(class_name: &str)
| 1178 | I::Ldc(index) => state |
| 1179 | .stack |
| 1180 | .push(frame_value_from_ldc(constant_pool, u16::from(*index))?), |
| 1181 | I::Ldc_w(index) => state |
| 1182 | .stack |
| 1183 | .push(frame_value_from_ldc(constant_pool, *index)?), |
| 1184 | I::Ldc2_w(index) => state |
| 1185 | .stack |
| 1186 | .push(frame_value_from_ldc2(constant_pool, *index)?), |
| 1187 | |
| 1188 | I::Iload(index) => state.load_local( |
| 1189 | u16::from(*index), |
| 1190 | local_hints, |
| 1191 | load_hint_for_instruction(instruction), |
| 1192 | context, |
| 1193 | instruction_index, |
no test coverage detected