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

CompareLessThan() public method

Pops two values from the stack, compares, then pushes 1 if the first argument is less than the second, or 0 otherwise. Produces 0 if one or both of the arguments are NaN.
public CompareLessThan ( ) : void
return void
        public override void CompareLessThan()
        {
            Emit2ByteOpCode(0xFE, 0x04, 2, 1);
            CheckComparisonOperands(ComparisonOperator.LessThan, branchOperation: false);
        }
DynamicILGenerator