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.org.objectweb.asm.util Provides ASM visitors that can be useful for programming and debugging purposes. -
-
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 void
JSRInlinerAdapter. 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 InsnList
MethodNode. instructions
The instructions of this method.Methods in org.objectweb.asm.tree with parameters of type InsnList Modifier and Type Method Description void
InsnList. add(InsnList insnList)
Adds the given instructions to the end of this list.void
InsnList. insert(AbstractInsnNode previousInsn, InsnList insnList)
Inserts the given instructions after the specified instruction.void
InsnList. insert(InsnList insnList)
Inserts the given instructions at the beginning of this list.void
InsnList. 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 InsnList
Analyzer. insnList
The instructions of the currently analyzed method. -
Uses of InsnList in org.objectweb.asm.util
Fields in org.objectweb.asm.util declared as InsnList Modifier and Type Field Description private InsnList
CheckFrameAnalyzer. insnList
The instructions of the currently analyzed method.
-