Jurassic.Compiler.DynamicILGenerator.BitwiseOr C# (CSharp) Метод

BitwiseOr() публичный Метод

Pops two values from the stack, ORs them together, then pushes the result to the stack.
public BitwiseOr ( ) : void
Результат void
        public override void BitwiseOr()
        {
            Emit1ByteOpCode(0x60, 2, 1);
            PopStackOperands(VESType.Int32, VESType.Int32);
            PushStackOperand(VESType.Int32);
        }
DynamicILGenerator