Jurassic.Compiler.DynamicILGenerator.BitwiseAnd C# (CSharp) 메소드

BitwiseAnd() 공개 메소드

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