Jurassic.Compiler.DynamicILGenerator.BitwiseXor C# (CSharp) Method

BitwiseXor() public method

Pops two values from the stack, XORs them together, then pushes the result to the stack.
public BitwiseXor ( ) : void
return void
        public override void BitwiseXor()
        {
            Emit1ByteOpCode(0x61, 2, 1);
            PopStackOperands(VESType.Int32, VESType.Int32);
            PushStackOperand(VESType.Int32);
        }
DynamicILGenerator