[project @ 1998-12-18 17:40:31 by simonpj]
[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_tree,
21         module U_ttype
22     ) where
23
24 #include "HsVersions.h"
25
26 import GlaExts
27
28 -- friends:
29 import U_binding
30 import U_constr
31 import U_entidt
32 import U_list
33 import U_literal
34 import U_maybe
35 import U_either
36 import U_gdexp
37 import U_grhsb
38 import U_match
39 import U_qid
40 import U_tree
41 import U_ttype
42
43 import UgenUtil
44 \end{code}