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