source: vendor/perl/5.8.8/ext/ByteLoader/ByteLoader.pm

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 687 bytes
Line 
1package ByteLoader;
2
3use XSLoader ();
4
5our $VERSION = '0.06';
6
7XSLoader::load 'ByteLoader', $VERSION;
8
91;
10__END__
11
12=head1 NAME
13
14ByteLoader - load byte compiled perl code
15
16=head1 SYNOPSIS
17
18 use ByteLoader 0.06;
19 <byte code>
20
21 or just
22
23 perl -MByteLoader bytecode_file
24
25=head1 DESCRIPTION
26
27This module is used to load byte compiled perl code as produced by
28C<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
29the byte code and insert it into the compiled code at the appropriate point.
30
31=head1 AUTHOR
32
33Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
34Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
35
36=head1 SEE ALSO
37
38perl(1).
39
40=cut
Note: See TracBrowser for help on using the repository browser.