I can't propose a detailed approach just now, but it would be along the lines of a perl script that would read perl code, look for declarations using "my", and normalize the text of these declarations so that you can look for duplicates easily. I have found B::Deparse to be useful in other cases where I wanted to look at perl code this way; it does an initial normalization of spacing around brackets and punctuation, making it a lot easier to look for things like subroutine definitions, variable declarations, etc.

You'd want something that takes code a line at a time, and spits out all the "my ..." declarations, one per line of output, with the line number in the original code (which is scrupulously preserved by B::Deparse, I think -- but even if it isn't, just edit the output of B::Deparse, 'cuz it's probably more readable than the original when there's a difference).

update: Here is an example using B::Deparse to tabulate sub defs and sub calls in perl code; might not be too big a stretch to make it focus on variable declarations instead.


In reply to Re: Prohibiting redeclaration of lexicals in inner scope by graff
in thread Prohibiting redeclaration of lexicals in inner scope by JohnLon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.