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 This software is copyright (c) 2015 by Florian Ragwitz.
33
34 This is free software; you can redistribute it and/or modify it under
35 the same terms as the Perl 5 programming language system itself.
36
37
38
39perl v5.30.1 2020-01-29 B::Compiling(3)