An item representing an indexed expression.
Method from com.sun.tools.javac.jvm.Items$IndexedItem Detail: |
void drop() {
code.emitop0(pop2);
}
|
void duplicate() {
code.emitop0(dup2);
}
|
Item load() {
code.emitop0(iaload + typecode);
return stackItem[typecode];
}
|
void stash(int toscode) {
code.emitop0(dup_x2 + 3 * (Code.width(toscode) - 1));
}
|
void store() {
code.emitop0(iastore + typecode);
}
|
public String toString() {
return "indexed(" + ByteCodes.typecodeNames[typecode] + ")";
}
|
int width() {
return 2;
}
|