Reorganisation of the source tree
[ghc-hetmet.git] / ghc / compiler / typecheck / TcExpr.lhs-boot
diff --git a/ghc/compiler/typecheck/TcExpr.lhs-boot b/ghc/compiler/typecheck/TcExpr.lhs-boot
deleted file mode 100644 (file)
index 1c4240d..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-\begin{code}
-module TcExpr where
-import HsSyn   ( HsExpr, LHsExpr )
-import Name    ( Name )
-import Var     ( Id )
-import TcType  ( TcType, BoxySigmaType, BoxyRhoType )
-import TcRnTypes( TcM, InstOrigin )
-
-tcPolyExpr :: 
-         LHsExpr Name
-       -> BoxySigmaType
-       -> TcM (LHsExpr Id)
-
-tcMonoExpr :: 
-         LHsExpr Name
-       -> BoxyRhoType
-       -> TcM (LHsExpr Id)
-
-tcInferRho :: 
-         LHsExpr Name
-       -> TcM (LHsExpr Id, TcType)
-
-tcSyntaxOp :: 
-         InstOrigin
-       -> HsExpr Name
-       -> TcType
-       -> TcM (HsExpr Id)
-\end{code}