mattias 20ac72e7aa pastojs: fixed parsing multi line comment 1 year ago
..
fcl-passrc.inc cc01706163 * Remove double define 1 year ago
pasresolveeval.pas b4ccac8def * Fix compilation with pas2js 1 year ago
pasresolver.pp 79d139d494 fcl-passrc: clean up 1 year ago
passrcutil.pp 1f0488a955 fcl-passrc: clean up 1 year ago
pastounittest.pp a9fbc6b9ed * Dotted filenames for package fcl-passrc 2 years ago
pastree.pp 9efa161ea7 * minor improvement for TPasRecordType.IsAdvancedRecord. Fixes issue #40539 1 year ago
pasuseanalyzer.pas a9fbc6b9ed * Dotted filenames for package fcl-passrc 2 years ago
paswrite.pp a9fbc6b9ed * Dotted filenames for package fcl-passrc 2 years ago
pparser.pp 20ac72e7aa pastojs: fixed parsing multi line comment 1 year ago
pscanner.pp 20ac72e7aa pastojs: fixed parsing multi line comment 1 year ago
readme.txt 4aff9f298f * Add pasresolver.pp, passrcutil.pp pastounittest.pp description 9 years ago

readme.txt

Pascal Source File Processing Units
===================================

(c) 2000-2003 Areca Systems GmbH / Sebastian Guenther, [email protected]

This directory contains some useful units for dealing with Pascal source
files: Parsing, creating structures in memory, and output to files.


pastree.pp
----------
Pascal parse tree classes, for storing a complete Pascal module in memory.
Currently, mainly declarations are supported; support for implementation
code is very basic.


paswrite.pp
-----------
A class and helper functions for creating Pascal source files from parse trees


pscanner.pp
-----------
Lexical scanner class for Pascal sources


pparser.pp
----------
Parser for Pascal source files. Reads files via the pscanner unit and stores
all parsed data in a parse tree, as implemented in the pastree unit.

pasresolver.pp
--------------
A symbol resolver: A TPasTreeContainer descendent that looks up symbols
(identifiers) in the parse tree, following the scope rules of Pascal

passrcutil.pp
-------------
A small class to roughly analyse a pascal source unit. It gives some methods to get
a list of interface/implementation units, whether a source file has resource
strings, a complete list of identifiers etc.

pastounittest.pp
----------------
A unit to create a FPC unit test source file from a pascal unit file.