| java.lang.Object pnuts.compiler.Reference
Reference | final class Reference (Code) | | |
Constructor Summary | |
| Reference(String symbol, int index, int offset) | | Reference(String symbol, int index, int offset, boolean initialized) | | Reference(String symbol, int index, int offset, boolean initialized, Frame frame) | | Reference(String symbol, LocalInfo info) |
Method Summary | |
public boolean | equals(Object object) Indicates whether some other object is "equal to" this one. | void | get(ClassFile cf, boolean local, int contextIndex) | public int | hashCode() Returns a hash code value for the object. | void | set(ClassFile cf, int tgt) | public String | toString() Returns a string representation of the object. |
index | int index(Code) | | Register number (aload_)
or -1 if the variable is in the class field.
|
initialized | boolean initialized(Code) | | |
offset | int offset(Code) | | 0 if the value is stored in an array. (ICONST_, AALOAD)
Otherwise, -1 (ALOAD )
|
Reference | Reference(String symbol, int index, int offset)(Code) | | |
Reference | Reference(String symbol, int index, int offset, boolean initialized)(Code) | | |
Reference | Reference(String symbol, int index, int offset, boolean initialized, Frame frame)(Code) | | |
equals | public boolean equals(Object object)(Code) | | Indicates whether some other object is "equal to" this one.
|
hashCode | public int hashCode()(Code) | | Returns a hash code value for the object.
|
toString | public String toString()(Code) | | Returns a string representation of the object.
|
|
|