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