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

Re: eval('__PACKAGE__') is always main?!!!

by MarkusLaker (Beadle)
on Dec 23, 2004 at 20:13 UTC ( #417201=note: print w/replies, xml ) Need Help??


in reply to eval('__PACKAGE__') is always main?!!!

To this humble initiate, it looks like a bug. In the following test program, the text inside the eval seems (correctly) to run in package P; the only difference that prepending 'package P' makes is to set __PACKAGE__ correctly.

[~/perl/test]$ cat package #!/usr/bin/perl use warnings; use strict; no strict 'vars'; sub speak($) { print __PACKAGE__, "::speak was passed '", $_[0], "'\n"; } $var = "\$main::var\n"; $var = $var; package P; sub speak($) { print __PACKAGE__, "::speak was passed '", $_[0], "'\n"; } $var = "\$P::var\n"; $var = $var; eval ' speak __PACKAGE__; print $var;'; eval 'package P; speak __PACKAGE__; print $var;'; [~/perl/test]$ ./package P::speak was passed 'main' $P::var P::speak was passed 'P' $P::var [~/perl/test]$

Markus

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others rifling through the Monastery: (8)
As of 2023-03-31 18:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (76 votes). Check out past polls.

    Notices?