001 package serp.bytecode;
002
003 /**
004 * Any array load or store instruction. This class has
005 * no functionality beyond the {@link TypedInstruction} but is provided
006 * so that users can easily identify array instructions in code if need be.
007 *
008 * @author Abe White
009 */
010 public abstract class ArrayInstruction extends TypedInstruction {
011 ArrayInstruction(Code owner) {
012 super(owner);
013 }
014
015 ArrayInstruction(Code owner, int opcode) {
016 super(owner, opcode);
017 }
018 }