diff options
Diffstat (limited to 'compiler/deSugar/DsExpr.lhs-boot')
-rw-r--r-- | compiler/deSugar/DsExpr.lhs-boot | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/compiler/deSugar/DsExpr.lhs-boot b/compiler/deSugar/DsExpr.lhs-boot new file mode 100644 index 0000000000..c65e99d80d --- /dev/null +++ b/compiler/deSugar/DsExpr.lhs-boot @@ -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} |