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

BranchIfZero() public method

Branches to the given label if the value on the top of the stack is zero.
public BranchIfZero ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void BranchIfZero(ILLabel label)
        {
            BranchCore(label, 0x39, VESType.Int32 | VESType.Int64 | VESType.Float |
                VESType.ManagedPointer | VESType.NativeInt | VESType.Object);
        }
DynamicILGenerator