Mattias Gaertner d4d401b26d fcl-passrc: resolver: include(intset,int) 4 years ago
..
fcl-passrc.inc fc5a1d81c7 fcl-passrc: less hints 5 years ago
pasresolveeval.pas e911431ed4 fcl-passrc: parser: export unit.symbol, resolver: started library export 4 years ago
pasresolver.pp d4d401b26d fcl-passrc: resolver: include(intset,int) 4 years ago
passrcutil.pp 909d34e1eb fcl-passrc: fixed search include file mode objfpc in dir of current include file 4 years ago
pastounittest.pp 76b9b4fdac * Add inherited to setup/teardown 13 years ago
pastree.pp b31305810c * print context in Release in debug mode 4 years ago
pasuseanalyzer.pas 50c659b1ca fcl-passrc: separate hints for not used fields: 4501, 4502 4 years ago
paswrite.pp 3f7d3e17cd fcl-passrc: use fmShareDenyNone when writing pas 4 years ago
pparser.pp b460f87fd4 fcl-passrc: fixed checking statement after except-on 4 years ago
pscanner.pp 73dd1afd7d * Fix bug ID #38269 (caret can be start of string) 4 years ago
readme.txt 4aff9f298f * Add pasresolver.pp, passrcutil.pp pastounittest.pp description 8 years ago

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.

pasresolver.pp
--------------
A symbol resolver: A TPasTreeContainer descendent that looks up symbols
(identifiers) in the parse tree, following the scope rules of Pascal

passrcutil.pp
-------------
A small class to roughly analyse a pascal source unit. It gives some methods to get
a list of interface/implementation units, whether a source file has resource
strings, a complete list of identifiers etc.

pastounittest.pp
----------------
A unit to create a FPC unit test source file from a pascal unit file.