michael e3cdbbe099 * Fix redeclaration of property which is default 11 years ago
..
passrcutil.pp 2252b71ae9 * Some small fixes so sdo is parsed 13 years ago
pastounittest.pp 76b9b4fdac * Add inherited to setup/teardown 13 years ago
pastree.pp 6d00c13957 * Forgot to commit (bug id 0025793) 11 years ago
paswrite.pp 6ace630c6f * fix for #24947, writing index expression of property. Patch by Daniel Gaspary. 12 years ago
pparser.pp e3cdbbe099 * Fix redeclaration of property which is default 11 years ago
pscanner.pp 399129693f * Initialize token more correct in case of * / + - 11 years ago
readme.txt 5b8dd4c004 * move fcl sources to separate packages 18 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.