1B::Compiling(3) User Contributed Perl Documentation B::Compiling(3)
2
3
4
6 B::Compiling - Expose PL_compiling to perl
7
9 use B::Compiling;
10
11 BEGIN {
12 warn "currently compiling ", PL_compiling->file;
13 }
14
16 This module exposes the perl interpreter's PL_compiling variable to
17 perl.
18
20 PL_compiling
21 This function returns a "B::COP" object representing PL_compiling. It's
22 exported by default. See B for documentation on how to use the returned
23 "B::COP".
24
26 B
27
29 Florian Ragwitz <rafl@debian.org>
30
32 Copyright (c) 2008 Florian Ragwitz
33
34 This module is free software. You can distribute it under the same
35 terms as perl itself.
36
37
38
39perl v5.12.1 2008-12-14 B::Compiling(3)