Jurassic.Compiler.DynamicILGenerator.BranchIfLessThan C# (CSharp) Метод

BranchIfLessThan() публичный Метод

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.
Результат void
        public override void BranchIfLessThan(ILLabel label)
        {
            BranchCore(label, 0x3F, ComparisonOperator.LessThan);
        }
DynamicILGenerator