Uses of Class
org.objectweb.asm.tree.InsnList
-
Packages that use InsnList Package Description org.objectweb.asm.commons Provides some useful class and method adapters.org.objectweb.asm.tree Provides an ASM visitor that constructs a tree representation of the classes it visits.org.objectweb.asm.tree.analysis Provides a framework for static code analysis based on the asm.tree package. -
-
Uses of InsnList in org.objectweb.asm.commons
Methods in org.objectweb.asm.commons with parameters of type InsnList Modifier and Type Method Description private voidJSRInlinerAdapter. emitInstantiation(JSRInlinerAdapter.Instantiation instantiation, java.util.List<JSRInlinerAdapter.Instantiation> worklist, InsnList newInstructions, java.util.List<TryCatchBlockNode> newTryCatchBlocks, java.util.List<LocalVariableNode> newLocalVariables)Emits an instantiation of a subroutine, specified byinstantiation. -
Uses of InsnList in org.objectweb.asm.tree
Fields in org.objectweb.asm.tree declared as InsnList Modifier and Type Field Description InsnListMethodNode. instructionsThe instructions of this method.Methods in org.objectweb.asm.tree with parameters of type InsnList Modifier and Type Method Description voidInsnList. add(InsnList insnList)Adds the given instructions to the end of this list.voidInsnList. insert(AbstractInsnNode previousInsn, InsnList insnList)Inserts the given instructions after the specified instruction.voidInsnList. insert(InsnList insnList)Inserts the given instructions at the beginning of this list.voidInsnList. insertBefore(AbstractInsnNode nextInsn, InsnList insnList)Inserts the given instructions before the specified instruction. -
Uses of InsnList in org.objectweb.asm.tree.analysis
Fields in org.objectweb.asm.tree.analysis declared as InsnList Modifier and Type Field Description private InsnListAnalyzer. insnListThe instructions of the currently analyzed method.
-