Package ftbsc.lll.utils.nodes
Class MethodProxyInsnNode
java.lang.Object
org.objectweb.asm.tree.AbstractInsnNode
org.objectweb.asm.tree.MethodInsnNode
ftbsc.lll.utils.nodes.MethodProxyInsnNode
public class MethodProxyInsnNode
extends org.objectweb.asm.tree.MethodInsnNode
Overrides the
MethodInsnNode to add a constructor
taking in a MethodProxy.- Since:
- 0.3.0
-
Field Summary
Fields inherited from class org.objectweb.asm.tree.MethodInsnNode
desc, itf, name, ownerFields 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
ConstructorsConstructorDescriptionMethodProxyInsnNode(int opcode, MethodProxy m) Constructs a newMethodInsnNodestarting from aMethodProxy. -
Method Summary
Methods inherited from class org.objectweb.asm.tree.MethodInsnNode
accept, clone, getType, setOpcodeMethods inherited from class org.objectweb.asm.tree.AbstractInsnNode
acceptAnnotations, cloneAnnotations, getNext, getOpcode, getPrevious
-
Constructor Details
-
MethodProxyInsnNode
Constructs a newMethodInsnNodestarting from aMethodProxy.- Parameters:
opcode- the opcode, must be one of INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACEm- aMethodProxyrepresenting the method to call
-