fpc/fcl/passrc
tom_at_work 202236c6e0 * fpcmake.ini update which fixes glibc search path problems on PowerPC64
* makefile update

git-svn-id: trunk@1546 -
2005-10-20 16:56:40 +00:00
..
fpmake.inc
fpmake.pp
Makefile * fpcmake.ini update which fixes glibc search path problems on PowerPC64 2005-10-20 16:56:40 +00:00
Makefile.fpc
pastree.pp
paswrite.pp
pparser.pp + Patch from Vincent Snijders to fix compilerproc and operators 2005-08-14 22:20:18 +00:00
pscanner.pp
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.