Moved from stack to inline execution.
git-svn-id: svn://10.0.0.236/trunk@33132 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -10,16 +10,14 @@ class JSIdentifier extends JSString {
|
||||
return indent + "JSIdentifier : " + s + "\n";
|
||||
}
|
||||
|
||||
void eval(Environment theEnv)
|
||||
JSValue eval(Environment theEnv)
|
||||
{
|
||||
theEnv.theStack.push(this);
|
||||
theEnv.scope.getProp(theEnv);
|
||||
return theEnv.scope.getProp(theEnv, this);
|
||||
}
|
||||
|
||||
void evalLHS(Environment theEnv)
|
||||
JSReference evalLHS(Environment theEnv)
|
||||
{
|
||||
theEnv.theStack.push(this);
|
||||
theEnv.theStack.push(theEnv.scope);
|
||||
return new JSReference(theEnv.scope, this);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user