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:
nboyd%atg.com
2001-12-11 14:16:13 +00:00
parent b73cbdf18c
commit 033d7b0e6b

View File

@@ -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) {