ghci-8.4.4: The library supporting GHC's interactive interpreter

Safe HaskellNone
LanguageHaskell2010

GHCi.TH

Description

Running TH splices

Synopsis

Documentation

startTH :: IO (RemoteRef (IORef QState)) Source #

The implementation of the StartTH message: create a new IORef QState, and return a RemoteRef to it.

runModFinalizerRefs :: Pipe -> RemoteRef (IORef QState) -> [RemoteRef (Q ())] -> IO () Source #

Runs the mod finalizers.

The references must be created on the caller process.

runTH Source #

Arguments

:: Pipe 
-> RemoteRef (IORef QState)

The TH state, created by startTH

-> HValueRef

The splice to run

-> THResultType

What kind of splice it is

-> Maybe Loc

The source location

-> IO ByteString

Returns an (encoded) result that depends on the THResultType

The implementation of the RunTH message