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

BranchIfEqual() public method

Branches to the given label if the two values on the top of the stack are equal.
public BranchIfEqual ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void BranchIfEqual(ILLabel label)
        {
            BranchCore(label, 0x3B, ComparisonOperator.Equal);
        }
DynamicILGenerator