Home | History | Annotate | Download | only in instruction

Lines Matching defs:VariableInstruction

33 public class VariableInstruction extends Instruction
41 * Creates an uninitialized VariableInstruction.
43 public VariableInstruction() {}
46 public VariableInstruction(boolean wide)
52 public VariableInstruction(byte opcode)
58 public VariableInstruction(byte opcode,
65 public VariableInstruction(byte opcode,
79 * @param variableInstruction the instruction to be copied.
82 public VariableInstruction copy(VariableInstruction variableInstruction)
84 this.opcode = variableInstruction.opcode;
85 this.variableIndex = variableInstruction.variableIndex;
86 this.constant = variableInstruction.constant;
87 this.wide = variableInstruction.wide;