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

BranchIfNotZero() public method

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