Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Monks,

I'm finding the uncommon error Variable "%data" is not available when using the following module:

package Foo; use warnings; use strict; my %data = qw/foo bar/; our $AUTOLOAD; sub AUTOLOAD { my ($self, @args) = @_; my ($pkg, $field) = (__PACKAGE__, $AUTOLOAD); $field =~ s/${pkg}:://; ## uncommenting any of these, makes the code work #%data; #() = %data; #map $_, %data; #map $_, \%data; #$::qwerty123 = %data; eval "*$field = sub { return \\%$field; };"; $@ and die "eval failed: $@\n"; goto &$field; } 1;
$ perl -I. -MData::Dumper -MFoo -e'print Dumper (Foo->data)' Variable "%data" is not available at (eval 1) line 1. $VAR1 = {};

As a workaround, it's enough to uncomment any of the commented lines (although the first of them triggers the expected warning):

$ perl -I. -MData::Dumper -MFoo -e'print Dumper (Foo->data)' Useless use of private hash in void context at Foo.pm line 16. $VAR1 = { 'foo' => 'bar' };

At this point I checked perldiag, which says: "This can happen for one of two reasons. First, the outer lexical may be declared in an outer anonymous subroutine that has not yet been created. [...] The second situation is caused by an eval accessing a variable that has gone out of scope".

To me, this scenario isn't covered by either of the given explanations. I could be led to believe that the first of the reasons explains it, although then I'd like to be educated on how this module compares to an anonymous subroutine regarding the compilation-time vs run-time issues that are detailed in the documentation and result in this error.

Just for fun, I appended the following at the bottom of Foo.pm:

package main; use warnings; use strict; use Data::Dumper; print Dumper (Foo->data);

Then, running perl Foo.pm works fine even with all those 5 lines mentioned above commented out.

--
 David Serrano
 (Please treat my english text just like Perl code, i.e. feel free to notify me of any syntax, grammar, style and/or spelling errors. Thank you!).


In reply to Variable "%data" is not available by Hue-Bond

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 chanting in the Monastery: (7)
As of 2024-04-25 11:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found