in reply to Re: How to tell eval where the code is from
in thread How to tell eval where the code is from
I am still stuck with AUTOLOADed routines: When the routine
is called the first time, AUTOLOAD executes a
statement like
$code=$database{$AUTOLOAD}; # e.g: "sub pkg::foo {...}" eval $code; $@ and error_msg($AUTOLOAD, $@, $code); goto &$AUTOLOAD;
Also, warnings (like those for undefined values) are generated without giving the running code an opportunity to add some information.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: Re: How to tell eval where the code is from
by merlyn (Sage) on Aug 08, 2000 at 16:35 UTC | |
by Yaakov (Novice) on Aug 08, 2000 at 16:58 UTC | |
|
RE: RE: Re: How to tell eval where the code is from
by tilly (Archbishop) on Aug 08, 2000 at 16:14 UTC | |
by merlyn (Sage) on Aug 08, 2000 at 16:38 UTC | |
by tilly (Archbishop) on Aug 08, 2000 at 16:41 UTC | |
by merlyn (Sage) on Aug 08, 2000 at 17:03 UTC | |
by tilly (Archbishop) on Aug 08, 2000 at 18:03 UTC | |
|