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

BitwiseAnd() public method

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