NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Correct behavior (Score:1)
Hi,
According to Class::C3 docs, the C3 algorithm only guarantees that no class Parent will be called before Child.
In your case, when he gets to '4', he can call '5' because '6' is not a subclass of '5'.
If you add Five to the @Six::ISA, then you would see the behavior that you are expecting.
Best regards,
life is short
Reply to This
Re: (Score:2)
Ah, OK. Thanks!