Through the generosity of Tom Phoenix, I'm in a position to take a few days and write an extra-strict version of use strict qw(subs), one that will explicitly yell at compile time if you've used a sub in your program that doesn't actually exist. I figured before I started in, I'd solicit some opinions on how it should look and behave.

The current restrictions are:

  1. Can't actually ride on use strict. (Though I may steal some bits in $^H)
  2. Must be lexically scoped
  3. Doesn't have to be backwards compatible, though that'd be nice. (perl 5.8.1 would be OK if I can convince Jarkko to put the patches in if it needs them)
  4. Shouldn't require forward declarations
  5. Doesn't have to be 100% accurate though that'd be nice1
So, anyone got any suggestions for features, or questions?

1By this I mean that, if we have to go with source filters, we don't have to catch every bizarre way to invoke subs that there are--this shouldn't yell in cases where it can't be sure


In reply to Extra strict subs by Elian

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.