This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 5.0 alpha 9
[perl5.git] / lib / AutoLoader.pm
CommitLineData
8990e307
LW
1package AutoLoader;
2
3AUTOLOAD {
4 my $name = "auto/$AUTOLOAD.al";
5 $name =~ s#::#/#g;
6 eval {require $name};
7 if ($@) {
8 ($p,$f,$l) = caller($AutoLevel);
9 $@ =~ s/ at .*\n//;
10 die "$@ at $f line $l\n";
11 }
12 goto &$AUTOLOAD;
13}
14
151;