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

The following examples show how to use jdk.internal.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: MultiANewArrayInsnNode.java    From dragonwell8_jdk 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 jdk.internal.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 2
Source File: MultiANewArrayInsnNode.java    From TencentKona-8 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 jdk.internal.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 3
Source File: MultiANewArrayInsnNode.java    From jdk8u60 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 jdk.internal.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 4
Source File: MultiANewArrayInsnNode.java    From openjdk-jdk8u 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 jdk.internal.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 5
Source File: MultiANewArrayInsnNode.java    From openjdk-jdk8u-backup 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 jdk.internal.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 6
Source File: MultiANewArrayInsnNode.java    From Bytecoder with Apache License 2.0 2 votes vote down vote up
/**
  * Constructs a new {@link MultiANewArrayInsnNode}.
  *
  * @param descriptor an array type descriptor (see {@link jdk.internal.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 7
Source File: MultiANewArrayInsnNode.java    From openjdk-jdk9 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 jdk.internal.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 8
Source File: MultiANewArrayInsnNode.java    From jdk8u-jdk 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 jdk.internal.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 9
Source File: MultiANewArrayInsnNode.java    From hottub 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 jdk.internal.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 10
Source File: MultiANewArrayInsnNode.java    From openjdk-8-source 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 jdk.internal.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 11
Source File: MultiANewArrayInsnNode.java    From openjdk-8 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 jdk.internal.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 12
Source File: MultiANewArrayInsnNode.java    From jdk8u_jdk 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 jdk.internal.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 13
Source File: MultiANewArrayInsnNode.java    From jdk8u-jdk 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 jdk.internal.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 14
Source File: MultiANewArrayInsnNode.java    From jdk8u-dev-jdk 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 jdk.internal.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 15
Source File: MultiANewArrayInsnNode.java    From nashorn 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 jdk.internal.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;
}