Files
runelite/src/main/java/info/sigterm/deob/attributes/code/ALoad.java
2014-12-01 00:31:26 -05:00

20 lines
400 B
Java

package info.sigterm.deob.attributes.code;
import java.io.DataInputStream;
import java.io.IOException;
public class ALoad extends Instruction
{
int index;
ALoad(Instructions instructions, InstructionType type, int pc) throws IOException
{
super(instructions, type, pc);
DataInputStream is = instructions.getCode().getAttributes().getStream();
index = is.readByte();
length += 1;
}
}