Class SourceValue
java.lang.Object
org.objectweb.asm.tree.analysis.SourceValue
- All Implemented Interfaces:
Value
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSourceValue(int size) SourceValue(int size, Set insns) SourceValue(int size, AbstractInsnNode insn) -
Method Summary
-
Field Details
-
size
public final int sizeThe size of this value. -
insns
The instructions that can produce this value. For example, for the Java code below, the instructions that can produce the value of i at line 5 are the txo ISTORE instructions at line 1 and 3:1: i = 0; 2: if (...) { 3: i = 1; 4: } 5: return i;This field is a set ofAbstractInsnNodeobjects.
-
-
Constructor Details
-
SourceValue
public SourceValue(int size) -
SourceValue
-
SourceValue
-
-
Method Details
-
getSize
-
equals
-
hashCode
-