2eab6a2806bdaf20714dd0bb25b67a59c0c52eb6
[ghc-hetmet.git] / ghc / compiler / parser / UgenAll.lhs
1 Stuff the Ugenny things show to the parser.
2
3 \begin{code}
4 module UgenAll (
5         -- stuff defined in utils module
6         module UgenUtil,
7
8         -- re-exported ugen-generated stuff
9         module U_binding,
10         module U_constr,
11         module U_entidt,
12         module U_list,
13         module U_literal,
14         module U_maybe,
15         module U_either,
16         module U_grhsb,
17         module U_gdexp,
18         module U_match,
19         module U_qid,
20         module U_rulevar,
21         module U_tree,
22         module U_ttype
23     ) where
24
25 #include "HsVersions.h"
26
27 import GlaExts
28
29 -- friends:
30 import U_binding
31 import U_constr
32 import U_entidt
33 import U_list
34 import U_literal
35 import U_maybe
36 import U_either
37 import U_gdexp
38 import U_grhsb
39 import U_match
40 import U_qid
41 import U_tree
42 import U_ttype
43 import U_rulevar
44
45 import UgenUtil
46 \end{code}