Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: regexp for finding all function calls

by Anonymous Monk
on Jul 07, 2009 at 22:07 UTC ( [id://778036]=note: print w/replies, xml ) Need Help??


in reply to Re: regexp for finding all function calls
in thread regexp for finding all function calls

Ok.

I have a large code base of say thousands of perl files. I want to copy all calls to Mod::func() interspersed in these thousands of files to a single file, say funcCalls.pl. Then I will run fucCalls.pl and verify the output of all of the calls to Mod::func().

If the output is wrong, hopefully I will have recorded the line number and file from which each call to Mod::func() came from. In this way I will be able to fix any erroneous calls to to Mod::func().
  • Comment on Re^2: regexp for finding all function calls

Replies are listed 'Best First'.
Re^3: regexp for finding all function calls
by moritz (Cardinal) on Jul 07, 2009 at 22:28 UTC
    I'd recommend using PPI, which does its best (and a very good job) at actually parsing Perl. You can search through the parse tree for sub calls, and check their names.

    That will be much more accurate than anything you can achieve with a regex.

      Ok, thanks.

      Do you have any good examples for me to look at? Would I be using PPI::Statement::Expression?
        I haven't done much with PPI, but I know that Perl::Critic uses it extensively, so in the source code you'll find many usage examples.

        There are also some examples exaxmples here on perlmonks. Searching helps.

Re^3: regexp for finding all function calls
by marksman (Novice) on Jul 07, 2009 at 22:29 UTC
    By the way, that was my post above as Anonymous Monk, I forgot that I wasn't logged in.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://778036]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-19 06:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found