http://www.perlmonks.org?node_id=1000660


in reply to 'extract' subs from source code

This is just an idea - not a real solution - but hopefully, more knowledgeable monks can either comment on it's viability, or explain it's unsuitability:

Since sub names are in the "main" namespace, how about using the perl debugger to load and print the sub info, without actually executing the program ?

             "By three methods we may learn wisdom: First, by reflection, which is noblest; Second, by imitation, which is easiest; and third by experience, which is the bitterest."           -Confucius

Replies are listed 'Best First'.
Re^2: 'extract' subs from source code
by chromatic (Archbishop) on Oct 24, 2012 at 16:36 UTC
    Since sub names are in the "main" namespace...

    They probably are, but they might not be.

    ... without actually executing the program?

    use or BEGIN or other metaprogramming mechanisms may modify what's available. You'll probably be fine with most scripts, but that's no guarantee.