1 package serp.bytecode; 2 3 /*** 4 * Any array load or store instruction. This class has 5 * no functionality beyond the {@link TypedInstruction} but is provided 6 * so that users can easily identify array instructions in code if need be. 7 * 8 * @author Abe White 9 */ 10 public abstract class ArrayInstruction extends TypedInstruction { 11 ArrayInstruction(Code owner) { 12 super(owner); 13 } 14 15 ArrayInstruction(Code owner, int opcode) { 16 super(owner, opcode); 17 } 18 }