Jurassic.Compiler.DynamicILGenerator.BranchIfNotZero C# (CSharp) Метод

BranchIfNotZero() публичный Метод

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.
Результат void
        public override void BranchIfNotZero(ILLabel label)
        {
            BranchCore(label, 0x3A, VESType.Int32 | VESType.Int64 | VESType.Float |
                VESType.ManagedPointer | VESType.NativeInt | VESType.Object);
        }
DynamicILGenerator