Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^3: Closure warning with Perl 5.14?

by JavaFan (Canon)
on May 19, 2011 at 09:11 UTC ( [id://905641]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Closure warning with Perl 5.14?
in thread Closure warning with Perl 5.14?

But shouldn't there be a warning in 5.12?
It warns, but only if Perl can, at compile time, determine that the condition is false.

Replies are listed 'Best First'.
Re^4: Closure warning with Perl 5.14? ("my ... if ...;")
by tye (Sage) on May 19, 2011 at 17:02 UTC

    Yeah, I don't understand having a warning for "my ... if 0;" but not for other "my ... if ...", especially since the second construct is more likely to be a real bug.

    The warning for "my ... if 0;" should convey something along the lines of "stop doing that hack to get 'state' variables as we won't guarantee that it will continue to work". The warning for other "my ... if ...;" should convey "you've got a bug there; move the 'my' out from under the 'if'".

    It is silly to warn for something that actually works fine but in theory might stop working some day while silently accepting something that just indicates a mistake (I've never seen code that intentionally and correctly used the behavior of "my ... if maybe();"), and a subtle mistake that is easy to not notice in testing. The second case is much more deserving of a warning.

    - tye        

Re^4: Closure warning with Perl 5.14?
by BerntB (Deacon) on May 19, 2011 at 09:19 UTC

    This complains about uninitialized value (of course), but gives no warning in 5.14.0:

    use warnings; use strict; use constant duh => 0; my $y = "X" if duh; sub x{ print $y ? 'Okay' : 'bad'; } x(); print "$y\n";

    And no warning even for this:

    use warnings; use strict; my $y = "X" if 0; sub x{ print $y ? 'Okay' : 'bad'; } x(); print "$y\n";
      Yeah, it only warns on my $var if 0, not on my $var = EXPR if COND. I do not know why.

        To allow stuff like the following?

        print(my $x = 1234) if COND;

        Which is to say, they probably didn't want to step on anything that has remote chance of being legit.

        That was a hack for getting state variables. So it might be found in code that should use state instead, and won't work as expected in the new versions.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (8)
As of 2024-04-23 16:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found