fpc/fcl/passrc
2006-05-27 08:33:23 +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 * use -P for cross compile 2006-04-23 18:53:29 +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 missing class directives, poped up after yesterdays changes 2006-05-27 08:33:23 +00:00
paswrite.pp Patch from IvankoB on Yandex.Ru to add support for REINTRODUCE, DEPRECATED, STATIC, OVERRIDE, MESSAGE modifiers 2006-04-08 14:42:22 +00:00
pparser.pp Patch from IvankoB on Yandex.Ru to add support for REINTRODUCE, DEPRECATED, STATIC, OVERRIDE, MESSAGE modifiers 2006-04-08 14:40:59 +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.