http://qs321.pair.com?node_id=417009


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}}}