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

BranchIfGreaterThanOrEqualUnsigned() public method

Branches to the given label if the first value on the stack is greater than or equal to 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 BranchIfGreaterThanOrEqualUnsigned ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void BranchIfGreaterThanOrEqualUnsigned(ILLabel label)
        {
            BranchCore(label, 0x41, ComparisonOperator.GreaterThanOrEqual);
        }
DynamicILGenerator