File tree 5 files changed +17
-17
lines changed
5 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
- {-# LANGUAGE CPP,
2
- Rank2Types,
3
- OverloadedStrings #-}
1
+ {-# LANGUAGE CPP #-}
2
+ {-# LANGUAGE Rank2Types #-}
3
+ {-# LANGUAGE OverloadedStrings #-}
4
4
5
5
-- | Functions for implementing the server side of JSON-RPC 2.0.
6
6
-- See <http://www.jsonrpc.org/specification>.
Original file line number Diff line number Diff line change 1
- {-# LANGUAGE CPP,
2
- MultiParamTypeClasses,
3
- FunctionalDependencies,
4
- FlexibleInstances,
5
- UndecidableInstances,
6
- TypeOperators,
7
- TypeSynonymInstances,
8
- OverloadedStrings #-}
1
+ {-# LANGUAGE CPP #-}
2
+ {-# LANGUAGE MultiParamTypeClasses #-} -- required by GHC 7.0.1
3
+ {-# LANGUAGE FunctionalDependencies #-}
4
+ {-# LANGUAGE FlexibleInstances #-}
5
+ {-# LANGUAGE UndecidableInstances #-}
6
+ {-# LANGUAGE TypeOperators #-}
7
+ {-# LANGUAGE TypeSynonymInstances #-} -- required by GHC 7.0.1
8
+ {-# LANGUAGE OverloadedStrings #-}
9
9
10
10
module Network.JsonRpc.Types ( RpcResult
11
11
, Method (.. )
Original file line number Diff line number Diff line change 1
- {-# LANGUAGE CPP,
2
- OverloadedStrings #-}
1
+ {-# LANGUAGE CPP #-}
2
+ {-# LANGUAGE OverloadedStrings #-}
3
3
4
4
module Internal ( request
5
5
, errRsp
Original file line number Diff line number Diff line change 1
- {-# LANGUAGE CPP,
2
- OverloadedStrings #-}
1
+ {-# LANGUAGE CPP #-}
2
+ {-# LANGUAGE OverloadedStrings #-}
3
3
4
4
module TestParallelism (testParallelizingTasks ) where
5
5
Original file line number Diff line number Diff line change 1
- {-# LANGUAGE CPP,
2
- OverloadedStrings #-}
1
+ {-# LANGUAGE CPP #-}
2
+ {-# LANGUAGE OverloadedStrings #-}
3
3
4
4
module Main (main ) where
5
5
You can’t perform that action at this time.
0 commit comments