org.objectweb.asm.tree.analysis
public class DataflowValue extends Object implements Value
Field Summary | |
---|---|
Set | insns
The instructions that can produce this value. |
int | size
The size of this value. |
Constructor Summary | |
---|---|
DataflowValue(int size) | |
DataflowValue(int size, AbstractInsnNode insn) | |
DataflowValue(int size, Set insns) |
Method Summary | |
---|---|
boolean | equals(Object value) |
int | getSize() |
int | hashCode() |
1: i = 0; 2: if (...) { 3: i = 1; 4: } 5: return i;This field is a set of {@link AbstractInsnNode} objects.