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

ShiftRightUnsigned() 공개 메소드

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