1 /** 2 * Some instructions are perniticky enough that its simpler 3 * to write them separately instead of smushing them with 4 * all the rest. the multiarray instruction is one of them. 5 * @author $Author: fqian $ 6 * @version $Revision: 1.1 $ 7 */ 8 9 package jas; 10 11 import java.io.*; 12 13 14 public class MultiarrayInsn extends Insn implements RuntimeConstants 15 { 16 /** 17 * @param cpe CP item for the array type 18 * @param sz number of dimensions for the array 19 */ 20 public MultiarrayInsn(CP cpe, int sz) 21 { 22 opc = opc_multianewarray; 23 operand = new MultiarrayOperand(cpe, sz); 24 } 25 } 26