Jonas Maebe 6398fa484c + darwin/ppc64 support 19 лет назад
..
Makefile 6398fa484c + darwin/ppc64 support 19 лет назад
Makefile.fpc 9adb91a68d + support for make -jX by marking all Makefiles that need to be executed 19 лет назад
fpmake.inc cc4818be26 + initial implementation of new fpmake compile tools 20 лет назад
fpmake.pp cc4818be26 + initial implementation of new fpmake compile tools 20 лет назад
pastree.pp 3ee2cef1b9 * Fixed Support for absolute. Stored absolute location 19 лет назад
paswrite.pp 0c81b44a23 Patch from IvankoB on Yandex.Ru to add support for REINTRODUCE, DEPRECATED, STATIC, OVERRIDE, MESSAGE modifiers 20 лет назад
pparser.pp 3ee2cef1b9 * Fixed Support for absolute. Stored absolute location 19 лет назад
pscanner.pp 28ce91de92 * Support for file type parsing 19 лет назад
readme.txt c15317226b * Added readme 23 лет назад

readme.txt

Pascal Source File Processing Units
===================================

(c) 2000-2003 Areca Systems GmbH / Sebastian Guenther, [email protected]

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.