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

BranchIfGreaterThanUnsigned() public method

Branches to the given label if the first value on the stack is greater than the second value on the stack. If the operands are integers then they are treated as if they are unsigned. If the operands are floating point numbers then a NaN value will trigger a branch.
public BranchIfGreaterThanUnsigned ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void BranchIfGreaterThanUnsigned(ILLabel label)
        {
            BranchCore(label, 0x42, ComparisonOperator.GreaterThanUnsigned);
        }
DynamicILGenerator