* @param instr identifies the instruction whose hint is being requested.
* @return a description of what the instruction does.
*/
public String getHint(Instruction instr) {
if (instr.getOpcode() == _wide.OPCODE) {
_wide wide = (_wide) instr;
return "wide " + this.hints[wide.getInstruction().getOpcode()];
} else {
return this.hints[instr.getOpcode()];
}
}