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 the
TypeInsnNode to add a constructor
taking in a TypeProxy.- Since:
- 0.4.0
-
Field Summary
Fields inherited from class org.objectweb.asm.tree.TypeInsnNode
descFields 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
ConstructorsConstructorDescriptionTypeProxyInsnNode(int opcode, TypeProxy t) Constructs a newTypeInsnNodestarting from aTypeProxy. -
Method Summary
Methods inherited from class org.objectweb.asm.tree.TypeInsnNode
accept, clone, getType, setOpcodeMethods inherited from class org.objectweb.asm.tree.AbstractInsnNode
acceptAnnotations, cloneAnnotations, getNext, getOpcode, getPrevious
-
Constructor Details
-
TypeProxyInsnNode
Constructs a newTypeInsnNodestarting 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- aTypeProxyrepresenting the type to call
-