Perl has some - IMHO buggy - behavior if a lexical declaration happens in the head and not the body of a compound construct like if(HEAD){BODY} .

The compile-time scope ends right after the BODY is closed, hence the lexical is not anymore declared.

But the run-time destruction will only happen if the outer-scope - that's at least the file-scope° - is finished.

Any reason why?

In my book that's a design flow at least.

DEMO:

use strict; use warnings; use Data::Dump qw/pp dd/; $\="\n"; our $PHASE=0; { if ( my $x = bless {name=>"extra block"}, "TEST" ) { $PHASE=1; print $x; } } # DESTRUCTION $PHASE=2; # line 16 if ( my $x = bless {name=>"head if"}, "TEST" ) { $PHASE=3; print $x; } # NO DESTRUCTION # --- uncomment for compile-time error # print $x; print ""; $PHASE=4; print ""; # line 32 package TEST; use Carp; sub DESTROY { my ( $self ) = @_ ; carp "DESTROY <x: $self->{name}> <PHASE: $::PHASE>"; }

will produce this output

C:/Strawberry/perl/bin\perl.exe -w d:/tmp/pm/berny_open.pl DESTROY <x: extra block> <PHASE: 1> at d:/tmp/pm/berny_open.pl line 16 +. DESTROY <x: head if> <PHASE: 4> at d:/tmp/pm/berny_open.pl line 32. TEST=HASH(0x1ca7e8) TEST=HASH(0x1ca8f0)

DISCLAIMER: This was just discussed at German.PM online meeting today and was motivated by this SO-Discussion.

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

updates


In reply to Scope difference between compile-time and run-time ( if( my $x = ... ) {...} ) by LanX

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.