Search results for "module:PPI::"
PPI - Parse, Analyze and Manipulate Perl (without perl)
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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::XS - (Minor) XS acceleration for PPI
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
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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::HTML - Generate syntax-hightlighted HTML for Perl using PPI
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
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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Token - A single token of Perl source code
"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....
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Cache - The PPI Document Caching Layer
"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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Lexer - The PPI Lexer
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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Dumper - Dumping of PDOM trees
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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Element - The abstract Element class, a base for all source objects
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....
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Document - Object representation of a Perl document
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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Statement - The base class for Perl statements
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....
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Exception - The PPI exception base class
All exceptions thrown from within PPI will be instances or derivations of this class....
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Transform - Abstract base class for document transformation classes
"PPI::Transform" provides an API for the creation of classes and objects that modify or transform PPI documents....
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::PowerToys - A handy collection of small PPI-based utilities
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::Structure - The base class for Perl braced structures
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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Tokenizer - The Perl Document Tokenizer
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...
MITHALDU/PPI-1.277 - 22 Sep 2023 09:18:22 UTC
PPI::Xref - generate cross-references for Perl code
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
PPI::Tester - A wxPerl-based interactive PPI debugger/tester
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