fpc/fcl/passrc
2006-01-29 17:49:42 +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 * removed libc package from build for every linux platform but i386 and x86-64 (libc is a x86 specific kylix compatibility library) 2006-01-29 17:49:42 +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 + Fixed inline detection on functions 2005-11-22 21:22:12 +00:00
pscanner.pp + >< support for fpdoc from Vincent Snijders 2006-01-14 13:04:22 +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.