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

BranchIfLessThanOrEqualUnsigned() public method

Branches to the given label if the first value on the stack is less 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 BranchIfLessThanOrEqualUnsigned ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void BranchIfLessThanOrEqualUnsigned(ILLabel label)
        {
            BranchCore(label, 0x3E, ComparisonOperator.LessThanOrEqualUnsigned);
        }
DynamicILGenerator