summaryrefslogtreecommitdiffstats
path: root/src/de/fernflower/code/instructions/MULTIANEWARRAY.java
blob: 58cffaa15a31fc1aef736a04a71f01b170b42f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package de.fernflower.code.instructions;

import java.io.DataOutputStream;
import java.io.IOException;

import de.fernflower.code.Instruction;

public class MULTIANEWARRAY extends Instruction {

	public void writeToStream(DataOutputStream out, int offset) throws IOException {
		out.writeByte(opc_multianewarray);
		out.writeShort(getOperand(0));
		out.writeByte(getOperand(1));
	}
	
	public int length() {
		return 4;
	}
	
}