Reorganisation of the source tree
[ghc-hetmet.git] / compiler / deSugar / DsExpr.lhs-boot
diff --git a/compiler/deSugar/DsExpr.lhs-boot b/compiler/deSugar/DsExpr.lhs-boot
new file mode 100644 (file)
index 0000000..c65e99d
--- /dev/null
@@ -0,0 +1,11 @@
+\begin{code}
+module DsExpr where
+import HsSyn   ( HsExpr, LHsExpr, HsLocalBinds )
+import Var     ( Id )
+import DsMonad ( DsM )
+import CoreSyn ( CoreExpr )
+
+dsExpr  :: HsExpr  Id -> DsM CoreExpr
+dsLExpr :: LHsExpr Id -> DsM CoreExpr
+dsLocalBinds :: HsLocalBinds Id -> CoreExpr -> DsM CoreExpr
+\end{code}