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

CompareLessThanUnsigned() 공개 메소드

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