Uses of Interface
org.objectweb.asm.tree.analysis.Value
-
Packages that use Value Package Description org.objectweb.asm.tree.analysis Provides a framework for static code analysis based on the asm.tree package. -
-
Uses of Value in org.objectweb.asm.tree.analysis
Classes in org.objectweb.asm.tree.analysis with type parameters of type Value Modifier and Type Class Description class
Analyzer<V extends Value>
A semantic bytecode analyzer.class
Frame<V extends Value>
A symbolic execution stack frame.class
Interpreter<V extends Value>
A semantic bytecode interpreter.Classes in org.objectweb.asm.tree.analysis that implement Value Modifier and Type Class Description class
BasicValue
AValue
that is represented with its type in a seven types type system.class
SourceValue
AValue
which keeps track of the bytecode instructions that can produce it.Fields in org.objectweb.asm.tree.analysis declared as Value Modifier and Type Field Description private V
Frame. returnValue
The expected return type of the analyzed method, or null if the method returns void.private V[]
Frame. values
The local variables and the operand stack of this frame.Constructors in org.objectweb.asm.tree.analysis with parameters of type Value Constructor Description AnalyzerException(AbstractInsnNode insn, java.lang.String message, java.lang.Object expected, Value actual)
Constructs a newAnalyzerException
.
-