Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: Throw from within a DESTROY block

by ribasushi (Pilgrim)
on Sep 07, 2011 at 02:01 UTC ( [id://924497]=note: print w/replies, xml ) Need Help??


in reply to Re: Throw from within a DESTROY block
in thread Throw from within a DESTROY block

If I move the die() out of the DESTROY, this becomes a non-question don't you think? :) The whole point is to figure out why perl thinks we are cleaning up (even though we are in the middle of runtime), and how to convince it otherwise.
  • Comment on Re^2: Throw from within a DESTROY block

Replies are listed 'Best First'.
Re^3: Throw from within a DESTROY block
by ikegami (Patriarch) on Sep 07, 2011 at 02:35 UTC

    If I move the die() out of the DESTROY, this becomes a non-question don't you think?

    If you don't, then your question is a non-question. ("How do you make Perl not act like Perl?")

    The whole point is to figure out why perl thinks we are cleaning up (even though we are in the middle of runtime),

    It is cleaning up an object, and you're wrong in thinking Perl think it's in the global destruction phase.

    $ perl -wE' DESTROY { die "foo" } { bless({}) } ' (in cleanup) foo at -e line 2. $ perl -wE' DESTROY { die "foo" } our $o = bless({}); ' (in cleanup) foo at -e line 2 during global destruction.
      Sigh. Given how I explicitly ask "how do I cheat perl here", a non-incendiary answer would be
      I am not sure you can do this,
      not
      <THOUGHTCRIME>perl is not designed to do that, turn around ang go back where you came from!</THOUGHTCRIME>

      Thanks for the reply annyway

        And one way to cheat is to move the die out of DESTROY, and say, into delete. Do you want cheats, or do you want to be told Perl doesn't do that?

        When I gave you the former, you said it's stupid. When I gave you the latter, you said I'm being inflammatory.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-19 19:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found