I was wonder if anyone has found it valuable to distinguish between compile-time and run-time module dependencies.
Example - in this case the module Fcntl is a compile-time dependency of module Bar:
package Bar;
use Smart::Comments;
sub blather {
### $foo
}
However, in this example, LWP::UserAgent is just a run-time dependency of module Foo:
package Foo;
use LWP::UserAgent;
sub make_agent { LWP::UserAgent->new }
It could also be written like this:
package Foo;
# NOTE: this module needs LWP::UserAgent loaded in order to work
sub make_agent { LWP::UserAgent->new }
It would then be some other code's responsibility to ensure that
LWP::UserAgent was loaded before any subs in package
Foo were called.
Specifically, a compile-time dependency is a module which needs to be loaded in order for a compile-check to work. A run-time dependency is one that only required to be loaded at run time.
So the question again - has anyone found it useful to formally declare a module's run-time only dependencies
- perhaps with a pragma like:
use runtime LWP::UserAgent;
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.