Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

B::Compiling - Expose PL_compiling to perl

Author

       Florian Ragwitz <rafl@debian.org>

Description

       This module exposes the perl interpreter's PL_compiling variable to perl.

Functions

PL_compiling
       This function returns a "B::COP" object representing PL_compiling. It's exported by default. See B for
       documentation on how to use the returned "B::COP".

Name

       B::Compiling - Expose PL_compiling to perl

See Also

       B

Synopsis

           use B::Compiling;

           BEGIN {
               warn "currently compiling ", PL_compiling->file;
           }

See Also