The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:PPI"

PPI - Parse, Analyze and Manipulate Perl (without perl) River stage four • 195 direct dependents • 1581 total dependents

About this Document This is the PPI manual. It describes its reason for existing, its general structure, its use, an overview of the API, and provides a few implementation samples. Background The ability to read, and manipulate Perl (the language) pr...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::XS - (Minor) XS acceleration for PPI River stage two • 3 direct dependents • 26 total dependents

PPI::XS provides XS-based acceleration of the core PPI packages. It selectively replaces a (small but growing) number of methods throughout PPI with identical but much faster C versions. Once installed, it will be auto-detected and loaded in by PPI c...

ETHER/PPI-XS-0.910 - 14 Dec 2017 04:26:28 UTC

PPI::Find - Object version of the Element->find method River stage four • 195 direct dependents • 1581 total dependents

PPI::Find is the primary PDOM searching class in the core PPI package. History It became quite obvious during the development of PPI that many of the modules that would be built on top of it were going to need large numbers of saved, storable or easi...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::HTML - Generate syntax-hightlighted HTML for Perl using PPI River stage two • 14 direct dependents • 20 total dependents

PPI::HTML converts Perl documents into syntax highlighted HTML pages....

ADAMK/PPI-HTML-1.08 - 16 Nov 2009 00:08:15 UTC

PPI::Node - Abstract PPI Node class, an Element that can contain other Elements River stage four • 195 direct dependents • 1581 total dependents

The "PPI::Node" class provides an abstract base class for the Element classes that are able to contain other elements PPI::Document, PPI::Statement, and PPI::Structure. As well as those listed below, all of the methods that apply to PPI::Element obje...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Cache - The PPI Document Caching Layer River stage four • 195 direct dependents • 1581 total dependents

"PPI::Cache" provides the default caching functionality for PPI. It integrates automatically with PPI itself. Once enabled, any attempt to load a document from the filesystem will be cached via cache. Please note that creating a PPI::Document from ra...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Lexer - The PPI Lexer River stage four • 195 direct dependents • 1581 total dependents

The is the PPI Lexer. In the larger scheme of things, its job is to take token streams, in a variety of forms, and "lex" them into nested structures. Pretty much everything in this module happens behind the scenes at this point. In fact, at the momen...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Token - A single token of Perl source code River stage four • 195 direct dependents • 1581 total dependents

"PPI::Token" is the abstract base class for all Tokens. In PPI terms, a "Token" is a PPI::Element that directly represents bytes of source code....

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Dumper - Dumping of PDOM trees River stage four • 195 direct dependents • 1581 total dependents

The PDOM trees in PPI are quite complex, and getting a dump of their structure for development and debugging purposes is important. This module provides that functionality. The process is relatively simple. Create a dumper object with a particular se...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Normal - Normalize Perl Documents River stage four • 195 direct dependents • 1581 total dependents

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Element - The abstract Element class, a base for all source objects River stage four • 195 direct dependents • 1581 total dependents

The abstract "PPI::Element" serves as a base class for all source-related objects, from a single whitespace token to an entire document. It provides a basic set of methods to provide a common interface and basic implementations....

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Document - Object representation of a Perl document River stage four • 195 direct dependents • 1581 total dependents

The "PPI::Document" class represents a single Perl "document". A "PPI::Document" object acts as a root PPI::Node, with some additional methods for loading and saving, and working with the line/column locations of Elements within a file. The exemption...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Transform - Abstract base class for document transformation classes River stage four • 195 direct dependents • 1581 total dependents

"PPI::Transform" provides an API for the creation of classes and objects that modify or transform PPI documents....

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Structure - The base class for Perl braced structures River stage four • 195 direct dependents • 1581 total dependents

PPI::Structure is the root class for all Perl bracing structures. This covers all forms of " [ ... ] ", " { ... } ", and " ( ... ) " brace types, and includes cases where only one half of the pair exist. The class PPI::Structure itself is full abstra...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Statement - The base class for Perl statements River stage four • 195 direct dependents • 1581 total dependents

PPI::Statement is the root class for all Perl statements. This includes (from perlsyn) "Declarations", "Simple Statements" and "Compound Statements". The class PPI::Statement itself represents a "Simple Statement" as defined in the perlsyn manpage....

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Exception - The PPI exception base class River stage four • 195 direct dependents • 1581 total dependents

All exceptions thrown from within PPI will be instances or derivations of this class....

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::Tokenizer - The Perl Document Tokenizer River stage four • 195 direct dependents • 1581 total dependents

PPI::Tokenizer is the class that provides Tokenizer objects for use in breaking strings of Perl source code into Tokens. By the time you are reading this, you probably need to know a little about the difference between how perl parses Perl "code" and...

OALDERS/PPI-1.278 - 11 Mar 2024 02:22:07 UTC

PPI::PowerToys - A handy collection of small PPI-based utilities River stage one • 1 direct dependent • 2 total dependents

The PPI PowerToys are a small collection of utilities for working with Perl files, modules and distributions. To kick off the collection, he's added a very simple and raw version of one of his own little tools. ppi_version > ppi_version show > ppi_ve...

ADAMK/PPI-PowerToys-0.14 - 10 May 2009 13:48:45 UTC

PPI::Tester - A wxPerl-based interactive PPI debugger/tester River stage zero No dependents

This package implements a wxWindows desktop application which provides the ability to interactively test the PPI perl parser. The "PPI::Tester" module implements the application, but is itself of no use to the user. The launcher for the application '...

ADAMK/PPI-Tester-0.15 - 05 May 2009 15:03:52 UTC

PPI::Xref - generate cross-references for Perl code River stage zero No dependents

use PPI::Xref; my $xref = PPI::Xref->new(); # Constructor. PPI::Xref can be used to process files of Perl code or Perl code as a string, and then generate cross-references of its contents. The code is never executed, only parsed as a document tree. N...

JHI/PPI-Xref-0.010 - 29 Jan 2016 22:19:08 UTC
142 results (0.027 seconds)