Hmmm, new changes these are.
git-svn-id: svn://10.0.0.236/trunk@32641 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -8,7 +8,7 @@ class BitwiseNode extends BinaryNode {
|
||||
void eval(Environment theEnv)
|
||||
{
|
||||
left.eval(theEnv);
|
||||
JSInteger lV = theEnv.theStack.pop().toJSInteger();
|
||||
JSInteger lV = theEnv.theStack.pop().toJSInteger(theEnv);
|
||||
right.eval(theEnv);
|
||||
|
||||
if (op == "&")
|
||||
|
||||
Reference in New Issue
Block a user