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

BranchIfGreaterThanOrEqual() 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.
public BranchIfGreaterThanOrEqual ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void BranchIfGreaterThanOrEqual(ILLabel label)
        {
            BranchCore(label, 0x3C, ComparisonOperator.GreaterThanOrEqual);
        }
DynamicILGenerator