Reorganisation of the source tree
[ghc-hetmet.git] / compiler / typecheck / TcSplice.lhs-boot
diff --git a/compiler/typecheck/TcSplice.lhs-boot b/compiler/typecheck/TcSplice.lhs-boot
new file mode 100644 (file)
index 0000000..d161770
--- /dev/null
@@ -0,0 +1,21 @@
+\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}