fpc/fcl/passrc
2003-10-02 08:50:13 +00:00
..
Makefile * remake with new fpc param 2003-10-02 08:50:13 +00:00
Makefile.fpc * rst files added 2003-09-27 14:20:58 +00:00
pastree.pp * First version as part of FCL 2003-03-13 21:47:42 +00:00
paswrite.pp * First version as part of FCL 2003-03-13 21:47:42 +00:00
pparser.pp + Patches from Matthias Gaertner to fix parsing of LCL 2003-06-24 12:59:07 +00:00
pscanner.pp MG: added IF directive skipping 2003-09-02 13:26:06 +00:00
readme.txt * Added readme 2003-03-13 21:52:14 +00:00

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

(c) 2000-2003 Areca Systems GmbH / Sebastian Guenther, sg@freepascal.org

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.