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

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