blob: ac78a2faee8cc88a54d7b81ac7d0b42cac7a55f0 (
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 !Bool !*HashTable !*File !SearchPaths !*PredefinedSymbols (ModTimeFunction *Files) !*Files
-> (!Bool, !ParsedModule, !*HashTable, !*File, !*PredefinedSymbols, !*Files)
|