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

ShiftRightUnsigned() public method

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
return void
        public override void ShiftRightUnsigned()
        {
            Emit1ByteOpCode(0x64, 2, 1);
            PopStackOperands(VESType.Int32, VESType.Int32);
            PushStackOperand(VESType.Int32);
        }
DynamicILGenerator