Fix bug 114493: "3"[5]();
git-svn-id: svn://10.0.0.236/trunk@110255 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -1917,7 +1917,9 @@ public class Interpreter extends LabelTable {
|
||||
lhs = stack[stackTop];
|
||||
if (lhs == DBL_MRK) lhs = doubleWrap(sDbl[stackTop]);
|
||||
if (lhs == undefined) {
|
||||
lhs = strings[getShort(iCode, pc + 1)];
|
||||
i = getShort(iCode, pc + 1);
|
||||
if (i != -1)
|
||||
lhs = strings[i];
|
||||
}
|
||||
Scriptable calleeScope = scope;
|
||||
if (theData.itsNeedsActivation) {
|
||||
|
||||
Reference in New Issue
Block a user