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

CompareGreaterThan() 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 0 if one or both of the arguments are NaN.
public CompareGreaterThan ( ) : void
return void
        public override void CompareGreaterThan()
        {
            Emit2ByteOpCode(0xFE, 0x02, 2, 1);
            CheckComparisonOperands(ComparisonOperator.GreaterThan, branchOperation: false);
        }
DynamicILGenerator