[project @ 1996-03-22 09:24:22 by partain]
[ghc-hetmet.git] / ghc / compiler / yaccParser / 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_atype.. ,
13         U_coresyn.. ,
14         U_hpragma.. ,
15         U_binding.. ,
16         U_treeHACK.. ,
17         U_entidt.. ,
18         U_finfot.. ,
19         U_list.. ,
20         U_literal.. ,
21         U_pbinding.. ,
22         U_ttype..
23
24     ) where
25
26 #if __GLASGOW_HASKELL__ < 26
27 import PreludePrimIO
28 #else
29 import PreludeGlaST
30 #endif
31
32 import U_atype
33 import U_binding
34 import U_coresyn
35 import U_entidt
36 import U_finfot
37 import U_hpragma
38 import U_list
39 import U_literal
40 import U_pbinding
41 import U_treeHACK
42 import U_ttype
43
44 import SrcLoc           ( SrcLoc )
45 import Outputable
46 import UgenUtil
47 import Util
48 \end{code}