| Modifier and Type | Field and Description | 
|---|---|
| Set<AbstractInsnNode> | insnsThe instructions that can produce this value. | 
| int | sizeThe size of this value. | 
| Constructor and Description | 
|---|
| SourceValue(int size) | 
| SourceValue(int size,
           AbstractInsnNode insn) | 
| SourceValue(int size,
           Set<AbstractInsnNode> insns) | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | equals(Object value) | 
| int | getSize()Returns the size of this value in words. | 
| int | hashCode() | 
public final int size
public final Set<AbstractInsnNode> insns
 1: i = 0;
 2: if (...) {
 3:   i = 1;
 4: }
 5: return i;
 
 
 This field is a set of AbstractInsnNode objects.public SourceValue(int size)
public SourceValue(int size,
                   AbstractInsnNode insn)
public SourceValue(int size,
                   Set<AbstractInsnNode> insns)
public int getSize()
Value