/// <summary> /// Pops two arguments from the stack, if both are equal branches to the label with the given name. /// </summary> public Emit BranchIfEqual(string name) { InnerEmit.BranchIfEqual(name); return(this); }
/// <summary> /// Pops two arguments from the stack, if both are equal branches to the given label. /// </summary> public Emit BranchIfEqual(Label label) { InnerEmit.BranchIfEqual(label); return(this); }