2930313233343536373839
return opcodeToToken.get(opcode); } public Instruction getInstructionByToken(String token) { Opcode opcode = getOpcodeByToken(token); if (opcode == null) return null; return Instruction.getInstructionByOpcode(opcode); }