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

CompareGreaterThanUnsigned() public method

Pops two values from the stack, compares, then pushes 1 if the first argument is greater than the second, or 0 otherwise. Produces 1 if one or both of the arguments are NaN. Integers are considered to be unsigned.
public CompareGreaterThanUnsigned ( ) : void
return void
        public override void CompareGreaterThanUnsigned()
        {
            Emit2ByteOpCode(0xFE, 0x03, 2, 1);
            CheckComparisonOperands(ComparisonOperator.GreaterThanUnsigned, branchOperation: false);
        }
DynamicILGenerator