fpc/fcl/passrc
2004-12-05 16:54:46 +00:00
..
Makefile * Makefiles regenerated 2004-12-05 16:54:46 +00:00
Makefile.fpc * units are now created in separate directory units/cpu-os/ 2004-10-30 12:36:43 +00:00
pastree.pp + Fixed getdeclaration of TPasRecordType (semicolons not/wrongly placed) 2004-07-24 00:03:13 +00:00
paswrite.pp
pparser.pp + Support for cross-unit aliases 2004-10-16 18:55:31 +00:00
pscanner.pp + Fixed line 404 - missing brackets 2004-09-05 08:56:56 +00:00
readme.txt

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.