Ports Search

Results 1,7911,800 of 5,623 for /devel/.(0.004 seconds)
devel/Attribute-Handlers-0.99 (Score: 0.032514982)
Simpler definition of attribute handlers
This module, when inherited by a package, allows that package's class to define attribute handler subroutines for specific attributes. Variables and subroutines subsequently defined in that package, or in packages derived from that package may be given attributes with the same names as the attribute handler subroutines, which will then be called in one of the compilation phases (i.e. in a BEGIN, CHECK, INIT, or END block).
devel/B-Hooks-EndOfScope-0.21 (Score: 0.032514982)
Execute code after a scope finished compilation
This module allows you to execute code when perl finished compiling the surrounding scope.
devel/AutoXS-Header-1.02 (Score: 0.032514982)
Container for the AutoXS header files
This module is a simple container for the newest version of the AutoXS header file AutoXS.h.
devel/B-Hooks-OP-Annotation-0.44 (Score: 0.032514982)
Annotate and delegate hooked OPs
B::Hooks::OP::Annotation provides a way for XS code that hijacks OP op_ppaddr functions to delegate to (or restore) the previous functions, whether assigned by perl or by another module. Typically this should be used in conjunction with B::Hooks::OP::Check.
Perl extension to invoke callback on construction of entersub OPs
Invoke callbacks on construction of entersub OPs for certain CVs.
devel/B-Hooks-OP-Check-0.19 (Score: 0.032514982)
Wrap OP check callbacks
This module provides a c api for XS modules to hook into the callbacks of PL_check.
devel/B-Hooks-OP-PPAddr-0.03 (Score: 0.032514982)
Hook into opcode execution
This module provides a C api for XS modules to hook into the execution of perl opcodes.
devel/B-Graph-0.51 (Score: 0.032514982)
Perl Compiler backend to diagram OP trees
This module is a layer between the perl-internals-examining parts of Malcolm Beattie's perl compiler (the B::* classes) and your favorite graph layout tool (currently Dot and VGC are supported, but adding others would be easy). It examines the internal structures that perl builds to represent your code (OPs and SVs), and generates specifications for multicolored boxes and arrows to represent them.
devel/B-Keywords-1.15 (Score: 0.032514982)
Lists of reserved barewords and symbol names
B::Keywords supplies seven arrays of keywords: @Scalars, @Arrays, @Hashes, @Filehandles, @Symbols, @Functions and @Barewords. The @Symbols array includes the contents of each of @Scalars, @Arrays, @Hashes and @Filehandles. Similarly, @Barewords adds a few non-function keywords (like __DATA__, NULL) to the @Functions array. All additions and modifications are welcome.
devel/B-OPCheck-0.32 (Score: 0.032514982)
PL_check hacks using Perl callbacks
PL_check is an array indexed by opcode number (op_type) that contains function pointers invoked as the last stage of optree compilation, per op.