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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I think what you really want to know is when the sub starts, and when it finishes, regardless of whether it finishes because it falls off the end of the sub, returns, or dies. Serendipitously, those are exactly the times when a sub-scoped lexical variable goes out of scope. If you create an object when the sub starts and hold it in a lexical variable, you can print the Entering message in its constructor, and the Exiting message in its destructor. Here's a short example:
#!/usr/bin/perl use warnings; use strict; package SubLog; sub new { my $class = shift; my $self = { name => (caller(1))[3], }; warn "ENTERING SUB: $self->{name}\n"; bless $self, $class; } sub DESTROY { my $self = shift; warn "EXITED SUB: $self->{name}\n"; } package main; sub blahblah { my $sublog = SubLog->new; return 5; } sub blahsub { my $sublog = SubLog->new; blahblah(); return 3; } blahsub();

In reply to Re: Tweaking 'return'. by sgifford
in thread Tweaking 'return'. by eff_i_g

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (1)
As of 2024-04-25 01:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found