michael c7690907e7 Correctly handle subclasses, patch by Henrique Werlang (issue #39195) преди 4 години
..
fcl-passrc.inc fc5a1d81c7 fcl-passrc: less hints преди 5 години
pasresolveeval.pas e72665051f pastojs: fixed float / 0.0 results at compiletime in inf instead of divbyzero, issue #38815 преди 4 години
pasresolver.pp 33b29b0df4 pastojs: low/high(astring) преди 4 години
passrcutil.pp 909d34e1eb fcl-passrc: fixed search include file mode objfpc in dir of current include file преди 4 години
pastounittest.pp 76b9b4fdac * Add inherited to setup/teardown преди 13 години
pastree.pp 3c18b7e3b6 fcl-passrc: process TBinaryExpr left lists without stack преди 4 години
pasuseanalyzer.pas ac9d2b3cc5 * Convert array of jsvalue to array of const where appropriate преди 4 години
paswrite.pp c7690907e7 Correctly handle subclasses, patch by Henrique Werlang (issue #39195) преди 4 години
pparser.pp ac9d2b3cc5 * Convert array of jsvalue to array of const where appropriate преди 4 години
pscanner.pp ac9d2b3cc5 * Convert array of jsvalue to array of const where appropriate преди 4 години
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.