Refactoring to Sv*_set() macros - patch #5
[p5sagit/p5-mst-13.2.git] / ext / ByteLoader / ByteLoader.pm
CommitLineData
b295d113 1package ByteLoader;
2
9426adcd 3use XSLoader ();
b295d113 4
b162af07 5our $VERSION = '0.06';
b295d113 6
9426adcd 7XSLoader::load 'ByteLoader', $VERSION;
b295d113 8
b295d113 91;
10__END__
bf2102da 11
b295d113 12=head1 NAME
13
14ByteLoader - load byte compiled perl code
15
16=head1 SYNOPSIS
17
b162af07 18 use ByteLoader 0.06;
b295d113 19 <byte code>
20
1df34986 21 or just
22
23 perl -MByteLoader bytecode_file
b295d113 24
25=head1 DESCRIPTION
26
1df34986 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.
b295d113 30
31=head1 AUTHOR
32
33Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
1df34986 34Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
b295d113 35
36=head1 SEE ALSO
37
38perl(1).
39
40=cut