Retrieves the ASM type of the given opcode. @param opcode Opcode value. @return Type of opcode. @throws NullPointerException When the opcode does not map to a type.
(int opcode)
| 314 | * When the opcode does not map to a type. |
| 315 | */ |
| 316 | public static int opcodeToType(int opcode) throws NullPointerException { |
| 317 | return opcodeToType.get(opcode); |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * Retrieves the set of opcode names by the given opcode type. |
no test coverage detected