[project @ 1996-03-19 08:58:34 by partain]
[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         -- re-exported Prelude stuff
6         returnUgn, thenUgn,
7
8         -- stuff defined in utils module
9         UgenUtil.. ,
10
11         -- re-exported ugen-generated stuff
12         U_binding.. ,
13         U_constr.. ,
14         U_coresyn.. ,
15         U_entidt.. ,
16         U_finfot.. ,
17         U_hpragma.. ,
18         U_list.. ,
19         U_literal.. ,
20         U_maybe.. ,
21         U_either.. ,
22         U_pbinding.. ,
23         U_qid.. ,
24         U_tree.. ,
25         U_ttype..
26
27     ) where
28
29 import PreludeGlaST
30
31 import Ubiq{-uitous-}
32
33 -- friends:
34 import U_binding
35 import U_constr
36 import U_coresyn
37 import U_entidt
38 import U_finfot
39 import U_hpragma
40 import U_list
41 import U_literal
42 import U_maybe
43 import U_either
44 import U_pbinding
45 import U_qid
46 import U_tree
47 import U_ttype
48
49 import UgenUtil
50 \end{code}