Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: goto superclass method

by broquaint (Abbot)
on Dec 23, 2004 at 06:48 UTC ( [id://417009]=note: print w/replies, xml ) Need Help??


in reply to goto superclass method

You were almost there, just give that goto code dereference a code reference as produced by can e.g
sub dostuff { goto &{ $_[0]->can('SUPER::dostuff') } if $condition; # ... }
Sorry if this repeats what was said above but all those replies were making me cross-eyed.
HTH

_________
broquaint

Replies are listed 'Best First'.
Re^2: goto superclass method
by Aristotle (Chancellor) on Dec 26, 2004 at 18:44 UTC

    You don't need the curlies there. It will work just fine without them:

    goto $_[0]->can( 'SUPER::dostuff' );

    Makeshifts last the longest.

•Re^2: goto superclass method
by merlyn (Sage) on Dec 23, 2004 at 12:03 UTC
      Heaven forbid someone makes a mistake. {{{sigh}}}

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (8)
As of 2024-04-23 13:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found