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

BitwiseOr() public method

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