From: Florian Ragwitz Date: Sat, 28 Mar 2009 10:10:08 +0000 (+0100) Subject: Improve mro merging error messages. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b11720532d118951e85d8a680330b826a6ab4227;p=p5sagit%2Fp5-mst-13.2.git Improve mro merging error messages. This makes them very similar to those produced by Algorithm::C3. --- diff --git a/ext/mro/mro.xs b/ext/mro/mro.xs index 3d343d4..1208c6c 100644 --- a/ext/mro/mro.xs +++ b/ext/mro/mro.xs @@ -202,13 +202,23 @@ S_mro_get_linear_isa_c3(pTHX_ HV* stash, U32 level) /* If we had candidates, but nobody won, then the @ISA hierarchy is not C3-incompatible */ if(!winner) { + SV *errmsg; + I32 i; + + errmsg = newSVpvf("Inconsistent hierarchy during C3 merge of class '%s':\n\t" + "current merge results [\n", HEK_KEY(stashhek)); + for (i = 0; i <= av_len(retval); i++) { + SV **elem = av_fetch(retval, i, 0); + sv_catpvf(errmsg, "\t\t%"SVf",\n", SVfARG(*elem)); + } + sv_catpvf(errmsg, "\t]\n\tmerging failed on '%"SVf"'", SVfARG(cand)); + /* we have to do some cleanup before we croak */ SvREFCNT_dec(retval); Safefree(heads); - Perl_croak(aTHX_ "Inconsistent hierarchy during C3 merge of class '%s': " - "merging failed on parent '%"SVf"'", HEK_KEY(stashhek), SVfARG(cand)); + Perl_croak(aTHX_ "%"SVf, SVfARG(errmsg)); } } }