/// <summary> /// Unconditionally branches to the given label. /// </summary> public Emit Branch(Label label) { InnerEmit.Branch(label); return(this); }
/// <summary> /// Unconditionally branches to the label with the given name. /// </summary> public Emit Branch(string name) { InnerEmit.Branch(name); return(this); }