Package ftbsc.lll.utils.nodes
Class TypeProxyInsnNode
- java.lang.Object
-
- org.objectweb.asm.tree.AbstractInsnNode
-
- org.objectweb.asm.tree.TypeInsnNode
-
- ftbsc.lll.utils.nodes.TypeProxyInsnNode
-
public class TypeProxyInsnNode extends org.objectweb.asm.tree.TypeInsnNode
Overrides theTypeInsnNode
to add a constructor taking in aTypeProxy
.- Since:
- 0.4.0
-
-
Field Summary
-
Fields inherited from class org.objectweb.asm.tree.AbstractInsnNode
FIELD_INSN, FRAME, IINC_INSN, INSN, INT_INSN, invisibleTypeAnnotations, INVOKE_DYNAMIC_INSN, JUMP_INSN, LABEL, LDC_INSN, LINE, LOOKUPSWITCH_INSN, METHOD_INSN, MULTIANEWARRAY_INSN, opcode, TABLESWITCH_INSN, TYPE_INSN, VAR_INSN, visibleTypeAnnotations
-
-
Constructor Summary
Constructors Constructor Description TypeProxyInsnNode(int opcode, TypeProxy t)
Constructs a newTypeInsnNode
starting from aTypeProxy
.
-
-
-
Constructor Detail
-
TypeProxyInsnNode
public TypeProxyInsnNode(int opcode, TypeProxy t)
Constructs a newTypeInsnNode
starting from aTypeProxy
. The user should ensure that the TypeInsnNode represents a declared type before calling this.- Parameters:
opcode
- the opcode, must be one of NEW, ANEWARRAY, CHECKCAST or INSTANCEOFt
- aTypeProxy
representing the type to call
-
-