Jurassic.Compiler.DynamicILGenerator.BranchIfZero C# (CSharp) 메소드

BranchIfZero() 공개 메소드

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.
리턴 void
        public override void BranchIfZero(ILLabel label)
        {
            BranchCore(label, 0x39, VESType.Int32 | VESType.Int64 | VESType.Float |
                VESType.ManagedPointer | VESType.NativeInt | VESType.Object);
        }
DynamicILGenerator