Michaël Van Canneyt 1055c7e0de * Add support for weakexternal modifier 6 ヶ月 前
..
dpktolpk.pp 5bcedcfe30 * Small improvements, quiet mode 1 年間 前
fcl-passrc.inc cc01706163 * Remove double define 2 年 前
pasresolveeval.pas 705b2cf62a * Fix compilation in pas2js 1 年間 前
pasresolver.pp b1d8c20a16 Allow an asynchronous procedure to be a promise. 6 ヶ月 前
passrcutil.pp 1f0488a955 fcl-passrc: clean up 2 年 前
pastounittest.pp a9fbc6b9ed * Dotted filenames for package fcl-passrc 2 年 前
pastree.pp 1055c7e0de * Add support for weakexternal modifier 6 ヶ月 前
pasuseanalyzer.pas 644f5d6717 fcl-passrc: pasuseanalyzer: analyze unit: skip foreign classes, mark nested types 6 ヶ月 前
paswrite.pp 435b6c0057 fcl-passrc: fixed initialize var 6 ヶ月 前
pparser.pp 1055c7e0de * Add support for weakexternal modifier 6 ヶ月 前
pscanner.pp 378be9721c * Do not use C operators 6 ヶ月 前
readme.txt 4aff9f298f * Add pasresolver.pp, passrcutil.pp pastounittest.pp description 9 年 前

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.