Java Code Examples for org.objectweb.asm.Opcodes#MULTIANEWARRAY

The following examples show how to use org.objectweb.asm.Opcodes#MULTIANEWARRAY . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MultiANewArrayFrame.java    From deobfuscator with Apache License 2.0 5 votes vote down vote up
public MultiANewArrayFrame(List<Frame> dims) {
    super(Opcodes.MULTIANEWARRAY);
    this.dims = dims;
    for (Frame dim : this.dims) {
        dim.children.add(this);
    }
}
 
Example 2
Source File: MultiANewArrayInsnNode.java    From JByteMod-Beta with GNU General Public License v2.0 4 votes vote down vote up
public MultiANewArrayInsnNode() {
  super(Opcodes.MULTIANEWARRAY);
}
 
Example 3
Source File: MultiArray.java    From CodenameOne with GNU General Public License v2.0 4 votes vote down vote up
public MultiArray(String desc, int dims) {
    super(Opcodes.MULTIANEWARRAY);
    this.desc = desc;
    this.dims = dims;
}
 
Example 4
Source File: MultiANewArrayInsnNode.java    From Cafebabe with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Constructs a new {@link MultiANewArrayInsnNode}.
 *
 * @param descriptor
 *          an array type descriptor (see {@link org.objectweb.asm.Type}).
 * @param numDimensions
 *          the number of dimensions of the array to allocate.
 */
public MultiANewArrayInsnNode(final String descriptor, final int numDimensions) {
	super(Opcodes.MULTIANEWARRAY);
	this.desc = descriptor;
	this.dims = numDimensions;
}
 
Example 5
Source File: MultiANewArrayInsnNode.java    From Concurnas with MIT License 2 votes vote down vote up
/**
 * Constructs a new {@link MultiANewArrayInsnNode}.
 *
 * @param descriptor an array type descriptor (see {@link org.objectweb.asm.Type}).
 * @param numDimensions the number of dimensions of the array to allocate.
 */
public MultiANewArrayInsnNode(final String descriptor, final int numDimensions) {
  super(Opcodes.MULTIANEWARRAY);
  this.desc = descriptor;
  this.dims = numDimensions;
}
 
Example 6
Source File: MultiANewArrayInsnNode.java    From JByteMod-Beta with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Constructs a new {@link MultiANewArrayInsnNode}.
 * 
 * @param desc
 *          an array type descriptor (see {@link org.objectweb.asm.Type}).
 * @param dims
 *          number of dimensions of the array to allocate.
 */
public MultiANewArrayInsnNode(final String desc, final int dims) {
  super(Opcodes.MULTIANEWARRAY);
  this.desc = desc;
  this.dims = dims;
}
 
Example 7
Source File: MultiANewArrayInsnNode.java    From JReFrameworker with MIT License 2 votes vote down vote up
/**
 * Constructs a new {@link MultiANewArrayInsnNode}.
 *
 * @param descriptor an array type descriptor (see {@link org.objectweb.asm.Type}).
 * @param numDimensions the number of dimensions of the array to allocate.
 */
public MultiANewArrayInsnNode(final String descriptor, final int numDimensions) {
  super(Opcodes.MULTIANEWARRAY);
  this.desc = descriptor;
  this.dims = numDimensions;
}
 
Example 8
Source File: MultiANewArrayInsnNode.java    From JReFrameworker with MIT License 2 votes vote down vote up
/**
 * Constructs a new {@link MultiANewArrayInsnNode}.
 *
 * @param descriptor an array type descriptor (see {@link org.objectweb.asm.Type}).
 * @param numDimensions the number of dimensions of the array to allocate.
 */
public MultiANewArrayInsnNode(final String descriptor, final int numDimensions) {
  super(Opcodes.MULTIANEWARRAY);
  this.desc = descriptor;
  this.dims = numDimensions;
}