[project @ 1996-04-05 08:26:04 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_hpragma.. ,
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 import Ubiq{-uitous-}
31
32 -- friends:
33 import U_binding
34 import U_constr
35 import U_coresyn
36 import U_entidt
37 import U_hpragma
38 import U_list
39 import U_literal
40 import U_maybe
41 import U_either
42 import U_pbinding
43 import U_qid
44 import U_tree
45 import U_ttype
46
47 import UgenUtil
48 \end{code}