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 + initial implementation of new fpmake compile tools 2005-06-17 16:53:18 +00:00
fpmake.pp + initial implementation of new fpmake compile tools 2005-06-17 16:53:18 +00:00
Makefile * fpcmake.ini update which fixes glibc search path problems on PowerPC64 2005-10-20 16:56:40 +00:00
Makefile.fpc * units are now created in separate directory units/cpu-os/ 2004-10-30 12:36:43 +00:00
pastree.pp * FPDoc / FCL/PasSrc: Added variant record support to parser and HTML writer 2005-06-20 10:32:54 +00:00
paswrite.pp * Add operator support 2005-06-04 14:05:12 +00:00
pparser.pp + Patch from Vincent Snijders to fix compilerproc and operators 2005-08-14 22:20:18 +00:00
pscanner.pp * Applied patches by Vincent Snijders 2005-08-11 20:56:44 +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.