Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Merlyn's cryptic comment inspired me to find out what the "variable won't stay shared" message means.

A subroutine can be named or anonymous, just as an array can be named or anonymous.

Furthermore, a subroutine can include a lexical variable declared outside the subroutine if they are within the same lexical scope. (When a subroutine includes such a lexical variable it is called a closure.)

But here is the catch. Normally perl only needs to compile a subroutine once. But when a subroutine is a closure, it potentially might need to recompile the subroutine more than once in case the externally-defined lexical variable changes its value.

It is a Law of Perl that if a subroutine is both named and a closure then Perl will only compile it once. Powerful magicians like Merlyn are able to use this feature to practice Deep Mojo. For the rest of us, this feature is likely to produce unexpected results.

So what Merlyn was saying is that he suspects that the named subroutines in the code in question contain lexical variables defined outside of the named subroutines. And he is sceptical that these completions were performed with the necessary knowledge of Perl magic needed to make them work.


In reply to Re: Re: Won't jump to Sub! by sierrathedog04
in thread Won't jump to Sub! by SilverB1rd

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 drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 02:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found