Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: SUPER delegation fails because class name getting munged (somehow?)

by pajout (Curate)
on Feb 23, 2011 at 16:36 UTC ( [id://889827]=note: print w/replies, xml ) Need Help??


in reply to SUPER delegation fails because class name getting munged (somehow?)

You can try
sub new { my $class = shift; $class = ref($class) if ref($class); my $self = $class->SUPER::new(); # <--- randomly fails ... return $self; }

Replies are listed 'Best First'.
Re^2: SUPER delegation fails because class name getting munged (somehow?)
by Anonymous Monk on Feb 24, 2011 at 04:19 UTC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://889827]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-03-28 20:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found