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