hint-server 1.3.1 → 1.3.2
raw patch · 3 files changed
+7/−4 lines, 3 files
Files
- changelog +3/−1
- hint-server.cabal +1/−2
- src/Language/Haskell/Interpreter/Server.hs +3/−1
changelog view
@@ -1,4 +1,6 @@-Version 1.3.0:++Version 1.3: - bump version of Hint - bump version of eprocess - Corentin Dupont takes over maintainance (as agreed with Fernando Benavides)+- compiling with GHC 7.8
hint-server.cabal view
@@ -1,5 +1,5 @@ name: hint-server-version: 1.3.1+version: 1.3.2 cabal-version: >=1.6 build-type: Simple license: BSD3@@ -11,7 +11,6 @@ description: This library provides a server process (implemented using eprocess) that can receive and run actions in the Interpreter monad. category: Concurrency, Language, Compilers/Interpreters author: Fernando "Brujo" Benavides-tested-with: GHC ==6.12.1 data-files: LICENSE README data-dir: "" extra-source-files: Setup.hs, changelog
src/Language/Haskell/Interpreter/Server.hs view
@@ -1,3 +1,5 @@+{-# LANGUAGE ImpredicativeTypes #-}+ -- | This module provides a server process (implemented using eprocess) that can receive and run actions in the Interpreter monad. module Language.Haskell.Interpreter.Server ( -- * Types@@ -20,7 +22,7 @@ instance MonadInterpreter m => MonadInterpreter (ReceiverT r m) where fromSession = lift . fromSession modifySessionRef a = lift . (modifySessionRef a)- runGhc = lift . runGhc + runGhc = lift . runGhc -- | Starts the server. Usage: -- @