/// <summary> /// <para>Pops one argument from the stack, branches to the label with the given name if the value is false.</para> /// <para>A value is false if it is zero or null.</para> /// </summary> public Emit BranchIfFalse(string name) { InnerEmit.BranchIfFalse(name); return(this); }
/// <summary> /// <para>Pops one argument from the stack, branches to the given label if the value is false.</para> /// <para>A value is false if it is zero or null.</para> /// </summary> public Emit BranchIfFalse(Label label) { InnerEmit.BranchIfFalse(label); return(this); }