blob: 8bf549b7143d08c5762a9b18cc1ac4649d2222c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
definition module parse
import syntax, hashtable, scanner, predef
:: *ParseErrorAdmin =
{ pea_file :: !*File
, pea_ok :: !Bool
}
cWantIclFile :== True
cWantDclFile :== False
wantModule :: !Bool !Ident !Position !*HashTable !*File !SearchPaths !*PredefinedSymbols !*Files
-> (!Bool, !ParsedModule, !*HashTable, !*File, !*PredefinedSymbols, !*Files)
|