org.objectweb.asm.tree.analysis
public class SourceValue extends Object implements Value
| Field Summary | |
|---|---|
| Set | insns
The instructions that can produce this value. |
| int | size
The size of this value. |
| Constructor Summary | |
|---|---|
| SourceValue(int size) | |
| SourceValue(int size, AbstractInsnNode insn) | |
| SourceValue(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 AbstractInsnNode objects.