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