in reply to Re^3: Dynamic Package Name & Subroutine Call
in thread Dynamic Package Name & Subroutine Call

can should be used for methods and only for methods

that boat has sailed a long time ago :)

  • Comment on Re^4: Dynamic Package Name & Subroutine Call

Replies are listed 'Best First'.
Re^5: Dynamic Package Name & Subroutine Call
by ikegami (Patriarch) on Dec 17, 2012 at 13:06 UTC
    That makes no sense. This isn't a change; can has never done the right thing for non-methods.

      sure it has :)

      $ perl -le " sub fudge { 42 } print main->can(q/fudge/)->() " 42
        That has always searched main's inheritance tree in the case where &main::fudge didn't exist, and that's not the right thing for subs.