MCPcopy Index your code
hub / github.com/Col-E/Recaf / opcodeToType

Method opcodeToType

src/main/java/me/coley/recaf/util/OpcodeUtil.java:316–318  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 3

populateLabelsMethod · 0.95
handleNextInsnMethod · 0.95
getParserMethod · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected