X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=example%2FRecorded.hs;h=5d7cac1b946e0264a51e8aa27e1c4ad060fd888d;hb=bffcf98d971a18b7d8911d526d388b3b8b805daa;hp=dc4aa69fd32f739a82be4e599b72423e657be397;hpb=9db776483f617de170b6798d5ea8a9f997c0d098;p=lsp-test.git diff --git a/example/Recorded.hs b/example/Recorded.hs index dc4aa69..5d7cac1 100644 --- a/example/Recorded.hs +++ b/example/Recorded.hs @@ -1,7 +1,12 @@ import Language.Haskell.LSP.Test.Recorded import System.Directory import System.Environment +import Control.Monad.IO.Class main = do - file <- (head <$> getArgs) >>= canonicalizePath - replay file + sessionFile <- (head <$> getArgs) >>= canonicalizePath + replay sessionFile $ do + x <- sendNextRequest + liftIO $ print x + y <- sendNextRequest + liftIO $ print y \ No newline at end of file