We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c85ccb commit f9d9759Copy full SHA for f9d9759
hls-graph/src/Development/IDE/Graph/Internal/Types.hs
@@ -7,7 +7,6 @@
7
8
module Development.IDE.Graph.Internal.Types where
9
10
-import Control.Applicative
11
import Control.Monad.Catch
12
import Control.Monad.IO.Class
13
import Control.Monad.Trans.Reader
plugins/hls-rename-plugin/src/Ide/Plugin/Rename.hs
@@ -49,6 +49,11 @@ import Language.LSP.Protocol.Message
49
import Language.LSP.Protocol.Types
50
import Language.LSP.Server
51
52
+#if MIN_VERSION_ghc(9,5,0)
53
+import Control.Monad.IO.Class (MonadIO, liftIO)
54
+import Control.Monad.Trans.Class (lift)
55
+#endif
56
+
57
instance Hashable (Mod a) where hash n = hash (unMod n)
58
59
descriptor :: Recorder (WithPriority E.Log) -> PluginId -> PluginDescriptor IdeState
0 commit comments