summaryrefslogtreecommitdiff
path: root/compiler/rename/RnSplice.hs-boot
blob: 875ba05e5297b3b4d9d863c0f35c6165d198b1da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module RnSplice where

import HsSyn
import TcRnMonad
import NameSet
import Kind


rnSpliceType :: HsSplice GhcPs   -> PostTc GhcRn Kind
             -> RnM (HsType GhcRn, FreeVars)
rnSplicePat  :: HsSplice GhcPs   -> RnM ( Either (Pat GhcPs) (Pat GhcRn)
                                          , FreeVars )
rnSpliceDecl :: SpliceDecl GhcPs -> RnM (SpliceDecl GhcRn, FreeVars)

rnTopSpliceDecls :: HsSplice GhcPs -> RnM ([LHsDecl GhcPs], FreeVars)