[project @ 1998-12-02 13:17:09 by simonm]
[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_pbinding,
17         module U_qid,
18         module U_tree,
19         module U_ttype
20     ) where
21
22 #include "HsVersions.h"
23
24 import GlaExts
25
26 -- friends:
27 import U_binding
28 import U_constr
29 import U_entidt
30 import U_list
31 import U_literal
32 import U_maybe
33 import U_either
34 import U_pbinding
35 import U_qid
36 import U_tree
37 import U_ttype
38
39 import UgenUtil
40 \end{code}