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

ShiftRight() 공개 메소드

Pops two values from the stack, shifts the first to the right, then pushes the result to the stack. The sign bit is preserved.
public ShiftRight ( ) : void
리턴 void
        public override void ShiftRight()
        {
            Emit1ByteOpCode(0x63, 2, 1);
            PopStackOperands(VESType.Int32, VESType.Int32);
            PushStackOperand(VESType.Int32);
        }
DynamicILGenerator