logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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