fpc/fcl/passrc
2005-01-11 17:07:45 +00:00
..
Makefile * regenerated 2005-01-11 17:07:45 +00:00
Makefile.fpc * units are now created in separate directory units/cpu-os/ 2004-10-30 12:36:43 +00:00
pastree.pp + Fix from Dave Strodtman to properly support packed 2004-12-06 08:53:47 +00:00
paswrite.pp + Fix from Dave Strodtman to properly support packed 2004-12-06 08:53:47 +00:00
pparser.pp * fixed previous patch 2004-12-21 22:29:34 +00:00
pscanner.pp + Some cleanup, removed some keywords which are not keywords 2004-12-06 19:16:38 +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.