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

Re^2: Perl best practices fanatism

by perrin (Chancellor)
on Dec 09, 2007 at 02:34 UTC ( [id://655917]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl best practices fanatism
in thread Perl best practices fanatism

It's Perl::Critic::Policy::Variables::ProhibitConditionalDeclarations. I remember because I requested it. I've never heard of this exception for local though. What's the story?

Replies are listed 'Best First'.
Re^3: Perl best practices fanatism
by chromatic (Archbishop) on Dec 09, 2007 at 06:15 UTC

    I have testing code (Parrot::Test, for example) that sometimes needs to mark a test as TODO, but for various reasons can't set the appropriate package variable. In the case of Parrot, this is because the code being tested is not Perl. Thus the library contains a line something like:

    local ${ $package . '::TODO' } = $opts{todo} if $opts{todo};

    This construct is very different than the conditional declaration of a lexical variable because local only controls the visibility of a symbol's binding. The unbinding always occurs at the end of the scope if the conditional is true. Unlike lexical bindings, the false condition does not interfere with unbinding.

    xdg is right, and it does appear fixed. Nice!

Log In?
Username:
Password:

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

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

    No recent polls found