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

BranchIfGreaterThan() public method

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