Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Code Reviews -- List Identifiers

by arkturuz (Curate)
on Nov 22, 2013 at 13:00 UTC ( [id://1063929]=note: print w/replies, xml ) Need Help??


in reply to Code Reviews -- List Identifiers

There are many options. If you would like to script something of your own, you could use PPI for custom source code analysis. There's also Perl::Critic which is mostly used for this kind of things with its set of predefined rules.

Replies are listed 'Best First'.
Re^2: Code Reviews -- List Identifiers
by tobyink (Canon) on Nov 22, 2013 at 17:56 UTC

    Here's a quick PPI example:

    use v5.12; use PPI; my $perl = PPI::Document::->new(do { local $/ = <DATA>; \$/ }); say $_ for @{ $perl->find('PPI::Token::Symbol') }; __DATA__ # Some sample code to analyse my $foo = 1; my @bar = (2, 3); say $bar[0];

    The output includes a variable called $bar which doesn't really exist :-( But that shouldn't be a problem for the OP's use case.

    use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name
Re^2: Code Reviews -- List Identifiers
by Anonymous Monk on Nov 23, 2013 at 07:41 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-23 18:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found