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

BranchIfNotEqual() public method

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