This repository was archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathPluginApi.hs
86 lines (71 loc) · 1.95 KB
/
PluginApi.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
-- | This module provides an API that software intended to be
-- integrated into HIE can use, so that they can make use of the
-- shared BIOS features.
{-
-- Stuff used in HaRe currently
Options(..)
defaultOptions
GmModuleGraph(..)
ModulePath(..)
GmComponent(..)
GmComponentType(..)
CachedInfo(..)
HasGhcModuleCache(..)
IdeGhcM
cabalModuleGraphs
filePathToUri
makeRevRedirMapFunc
MonadIO(..)
ifCachedModule
runIdeGhcMBare
setTypecheckedModule
-}
module Haskell.Ide.Engine.PluginApi
(
-- * IDE monads
HIE.IdeState(..)
, HIE.IdeGhcM
, HIE.runIdeGhcM
, HIE.runActionWithContext
, HIE.IdeM
, HIE.runIdeM
, HIE.IdeDeferM
, HIE.MonadIde
, HIE.iterT
, HIE.LiftsToGhc(..)
, HIE.HasGhcModuleCache(..)
-- , HIE.cabalModuleGraphs
, HIE.makeRevRedirMapFunc
-- * Using the HIE module cache etc
, HIE.setTypecheckedModule
, HIE.Diagnostics
, HIE.AdditionalErrs
, LSP.filePathToUri
, LSP.uriToFilePath
, LSP.Uri
, HIE.ifCachedModule
, HIE.CachedInfo(..)
, HIE.IdeResult
-- * used for tests in HaRe
, BiosLogLevel
, BiosOptions
, defaultOptions
, HIE.BIOSVerbosity(..)
, HIE.CradleOpts(..)
, emptyIdePlugins
, emptyIdeState
) where
import qualified Haskell.Ide.Engine.Ghc as HIE
import qualified Haskell.Ide.Engine.GhcModuleCache as HIE (CachedInfo(..),HasGhcModuleCache(..),emptyModuleCache)
import qualified Haskell.Ide.Engine.ModuleCache as HIE (ifCachedModule,runActionWithContext )
import qualified Haskell.Ide.Engine.PluginsIdeMonads as HIE
import qualified Language.Haskell.LSP.Types as LSP ( filePathToUri, uriToFilePath, Uri )
import qualified HIE.Bios.Types as HIE
defaultOptions :: HIE.CradleOpts
defaultOptions = HIE.defaultCradleOpts
type BiosLogLevel = HIE.BIOSVerbosity
type BiosOptions = HIE.CradleOpts
emptyIdePlugins :: HIE.IdePlugins
emptyIdePlugins = HIE.IdePlugins mempty
emptyIdeState :: HIE.IdeState
emptyIdeState = HIE.IdeState HIE.emptyModuleCache mempty mempty Nothing