in reply to Re: perl determine a subroutine name by given line
in thread perl determine a subroutine name by given line
Not quite. It seems to give the line number where the subroutine becomes known to perl. Thus, if the sub is used before it is defined the line numbers will be wrong. Example:
#!/usr/bin/perl use 5.010; say f( 34 ); sub f { $_[0] + 8 }
Then, perl -MO=Xref,d /tmp/test.pl gives (among other things):
Package main &f s3
Which is the line where f is used, not defined.
This is perl, v5.10.1 (*) built for x86_64-linux-gnu-thread-multi
Good Day,
Dean
|
|---|