mattias 7e240a4481 fcl-passrc: fixed searching forward proc in local scope 6 лет назад
..
pasresolveeval.pas e99a2ffc22 fcl-passrc: separate hint for method hides ancestor method exactly 6 лет назад
pasresolver.pp 7e240a4481 fcl-passrc: fixed searching forward proc in local scope 6 лет назад
passrcutil.pp fb8b744e39 pas2js fixes: added compiler files 6 лет назад
pastounittest.pp fb8b744e39 pas2js fixes: added compiler files 6 лет назад
pastree.pp fb8b744e39 pas2js fixes: added compiler files 6 лет назад
pasuseanalyzer.pas caf8017e04 fcl-passrc: when using members, use parent type 6 лет назад
paswrite.pp fb8b744e39 pas2js fixes: added compiler files 6 лет назад
pparser.pp 8f31992686 fcl-passrc: fixed parent of const external modifier 6 лет назад
pscanner.pp 1e56a381ec fcl-passrc: test helper for double 6 лет назад
readme.txt fb8b744e39 pas2js fixes: added compiler files 6 лет назад

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.