rjbs has asked for the wisdom of the Perl Monks concerning the following question:
# this line starts in column 0, and seems like runtime assignment *ID = \&Scalar::Util::refaddr; # the same for these, later: *_extract_default = _extractor_for_pair_named('default'); *_extract_init_arg = _extractor_for_pair_named('init_arg'); *_extract_get = _extractor_for_pair_named('get'); *_extract_set = _extractor_for_pair_named('set'); # later, in Class::Std::SCR... my %values_of : ATTR ( :init_arg<values> );
The handler for ATTR ends up getting called at compile time, and it, in turn, uses _extract_default. That isn't defined yet (because the ATTR handler (MODIFY_HASH_ATTRIBUTES) is being called at compile time) so AUTOLOAD gets called. AUTOLOAD, in turn, uses ID, which isn't defined yet, so it calls AUTOLOAD...!
Deep recursion happens, and we all cry.
Why isn't this a problem under, say, perl 5.8.7?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Class::Std, 5.6.1, and AUTOLOAD
by ikegami (Patriarch) on Sep 22, 2005 at 16:34 UTC | |
by rjbs (Pilgrim) on Sep 22, 2005 at 16:49 UTC | |
by ikegami (Patriarch) on Sep 22, 2005 at 17:22 UTC | |
by rjbs (Pilgrim) on Sep 22, 2005 at 17:55 UTC | |
|
Re: Class::Std, 5.6.1, and AUTOLOAD
by chromatic (Archbishop) on Sep 22, 2005 at 16:38 UTC | |
by rjbs (Pilgrim) on Sep 22, 2005 at 17:04 UTC |