org.objectweb.asm.tree
Class MultiANewArrayInsnNode
public class MultiANewArrayInsnNode
A node that represents a MULTIANEWARRAY instruction.
- Eric Bruneton
String | desc - An array type descriptor (see
Type ).
|
int | dims - Number of dimensions of the array to allocate.
|
desc
public String desc
An array type descriptor (see
Type
).
dims
public int dims
Number of dimensions of the array to allocate.
MultiANewArrayInsnNode
public MultiANewArrayInsnNode(String desc,
int dims)
desc
- an array type descriptor (see Type
).dims
- number of dimensions of the array to allocate.
accept
public void accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
- accept in interface AbstractInsnNode
cv
- a code visitor.