fpc/packages/fcl-passrc/src
2014-03-14 08:33:57 +00:00
..
passrcutil.pp * Some small fixes so sdo is parsed 2012-08-23 12:56:19 +00:00
pastounittest.pp * Add inherited to setup/teardown 2012-09-16 15:59:21 +00:00
pastree.pp * Forgot to commit (bug id 0025793) 2014-02-27 08:32:34 +00:00
paswrite.pp * fix for #24947, writing index expression of property. Patch by Daniel Gaspary. 2013-10-04 21:37:52 +00:00
pparser.pp * Fix redeclaration of property which is default 2014-03-14 08:33:57 +00:00
pscanner.pp * Initialize token more correct in case of * / + - 2013-12-30 21:58:14 +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.