I have a code which calls the function. But I don't know the module this function belongs to. I need it to modify this function.
How can I check it?
|
I have a code which calls the function. But I don't know the module this function belongs to. I need it to modify this function. How can I check it? |
|||||||
|
|
The
the An alternative solution would be |
|||||
|
|
Perl's debugger can dig down the way you want. For example: main::(-e:1): 0
DB<1> sub foo {}
DB<2> x \&foo
0 CODE(0xca6898)
-> &main::foo in (eval 5)[/usr/share/perl/5.10/perl5db.pl:638]:2-2
It does this using Devel::Peek:
You might exercise it with
Output: Foo::bar Note that the example above gives |
|||
|
|
|
If the function was automatically imported from another module using
You can provide a list of functions to
|
||||
|
|