compiler: comment TSymTableType entries + formatting

git-svn-id: trunk@16675 -
This commit is contained in:
paul 2011-01-01 16:59:33 +00:00
parent a7cea8606f
commit 7dd6cf07b4
2 changed files with 19 additions and 13 deletions

View File

@ -435,13 +435,19 @@ type
);
{ types of the symtables }
TSymtabletype = (abstracTSymtable,
globalsymtable,staticsymtable,
ObjectSymtable,recordsymtable,
localsymtable,parasymtable,
withsymtable,stt_excepTSymtable,
exportedmacrosymtable, localmacrosymtable,
enumsymtable
TSymtabletype = (
abstractsymtable, { not a real symtable }
globalsymtable, { unit interface symtable }
staticsymtable, { unit implementation symtable }
ObjectSymtable, { object symtable }
recordsymtable, { record symtable }
localsymtable, { subroutine symtable }
parasymtable, { arguments symtable }
withsymtable, { with operator symtable }
stt_excepTSymtable, { try/except symtable }
exportedmacrosymtable, { }
localmacrosymtable, { }
enumsymtable { symtable for enum members }
);