Reorganisation of the source tree
[ghc-hetmet.git] / ghc / compiler / typecheck / TcSplice.lhs-boot
diff --git a/ghc/compiler/typecheck/TcSplice.lhs-boot b/ghc/compiler/typecheck/TcSplice.lhs-boot
deleted file mode 100644 (file)
index d161770..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-\begin{code}
-module TcSplice where
-import HsSyn   ( HsSplice, HsBracket, HsExpr, LHsExpr, HsType, LHsDecl )
-import Var     ( Id )
-import Name    ( Name )
-import RdrName ( RdrName )
-import TcRnTypes( TcM )
-import TcType  ( TcKind, BoxyRhoType )
-
-tcSpliceExpr :: HsSplice Name
-            -> BoxyRhoType
-            -> TcM (HsExpr Id)
-
-kcSpliceType :: HsSplice Name -> TcM (HsType Name, TcKind)
-
-tcBracket :: HsBracket Name 
-         -> BoxyRhoType
-         -> TcM (LHsExpr Id)
-
-tcSpliceDecls :: LHsExpr Name -> TcM [LHsDecl RdrName]
-\end{code}