[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / yaccParser / UgenAll.lhs
diff --git a/ghc/compiler/yaccParser/UgenAll.lhs b/ghc/compiler/yaccParser/UgenAll.lhs
new file mode 100644 (file)
index 0000000..7ca0508
--- /dev/null
@@ -0,0 +1,48 @@
+Stuff the Ugenny things show to the parser.
+
+\begin{code}
+module UgenAll (
+       -- re-exported Prelude stuff
+       returnUgn, thenUgn,
+
+       -- stuff defined in utils module
+       UgenUtil.. ,
+
+       -- re-exported ugen-generated stuff
+       U_atype.. ,
+       U_coresyn.. ,
+       U_hpragma.. ,
+       U_binding.. ,
+       U_treeHACK.. ,
+       U_entidt.. ,
+       U_finfot.. ,
+       U_list.. ,
+       U_literal.. ,
+       U_pbinding.. ,
+       U_ttype..
+
+    ) where
+
+#if __GLASGOW_HASKELL__ < 26
+import PreludePrimIO
+#else
+import PreludeGlaST
+#endif
+
+import U_atype
+import U_binding
+import U_coresyn
+import U_entidt
+import U_finfot
+import U_hpragma
+import U_list
+import U_literal
+import U_pbinding
+import U_treeHACK
+import U_ttype
+
+import SrcLoc          ( SrcLoc )
+import Outputable
+import UgenUtil
+import Util
+\end{code}