in reply to finding source position of function

Sub::Information can give you the start line. Adding the end line is relatively easy (it's a one-liner).

With that said, it's easy enough to lie to Perl about line numbers.

  • Comment on Re: finding source position of function

Replies are listed 'Best First'.
Re^2: finding source position of function
by LanX (Saint) on Aug 14, 2012 at 14:08 UTC
    Thanks for the valuable information!

    Actually I was hoping to find a Core-approach w/o such dependencies.

    Luckily I'm only trying to extend the debugger features, where I can do it out of the box.

    It turned out %DB::sub holds the neccessary informations... :)

    Cheers Rolf