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

BranchIfLessThan() public method

Branches to the given label if the first value on the stack is less than the second value on the stack.
public BranchIfLessThan ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void BranchIfLessThan(ILLabel label)
        {
            BranchCore(label, 0x3F, ComparisonOperator.LessThan);
        }
DynamicILGenerator