|
1 | | -module Development.IDE |
2 | | -( |
3 | | - -- TODO It would be much nicer to enumerate all the exports |
4 | | - -- and organize them in sections |
5 | | - module X |
6 | | - |
7 | | -) where |
8 | | - |
9 | | -import Development.IDE.Core.Actions as X (getAtPoint, |
10 | | - getDefinition, |
11 | | - getTypeDefinition, |
12 | | - useE, useNoFileE, |
13 | | - usesE) |
14 | | -import Development.IDE.Core.FileExists as X (getFileExists) |
15 | | -import Development.IDE.Core.FileStore as X (getFileContents) |
16 | | -import Development.IDE.Core.IdeConfiguration as X (IdeConfiguration (..), |
17 | | - isWorkspaceFile) |
18 | | -import Development.IDE.Core.OfInterest as X (getFilesOfInterestUntracked) |
19 | | -import Development.IDE.Core.RuleTypes as X |
20 | | -import Development.IDE.Core.Rules as X (IsHiFileStable (..), |
21 | | - getClientConfigAction, |
22 | | - getParsedModule) |
23 | | -import Development.IDE.Core.Service as X (runAction) |
24 | | -import Development.IDE.Core.Shake as X (FastResult (..), |
25 | | - IdeAction (..), |
26 | | - IdeRule, IdeState, |
27 | | - RuleBody (..), |
28 | | - ShakeExtras, |
29 | | - actionLogger, |
30 | | - define, |
31 | | - defineEarlyCutoff, |
32 | | - defineNoDiagnostics, |
33 | | - getClientConfig, |
34 | | - getPluginConfig, |
35 | | - ideLogger, |
36 | | - runIdeAction, |
37 | | - shakeExtras, use, |
38 | | - useNoFile, |
39 | | - useNoFile_, |
40 | | - useWithStale, |
41 | | - useWithStaleFast, |
42 | | - useWithStaleFast', |
43 | | - useWithStale_, |
44 | | - use_, uses, uses_) |
45 | | -import Development.IDE.GHC.Compat as X (GhcVersion (..), |
46 | | - ghcVersion) |
47 | | -import Development.IDE.GHC.Error as X |
48 | | -import Development.IDE.GHC.Util as X |
49 | | -import Development.IDE.Graph as X (Action, RuleResult, |
50 | | - Rules, action) |
51 | | -import Development.IDE.Plugin as X |
52 | | -import Development.IDE.Types.Diagnostics as X |
53 | | -import Development.IDE.Types.HscEnvEq as X (HscEnvEq (..), |
54 | | - hscEnv, |
55 | | - hscEnvWithImportPaths) |
56 | | -import Development.IDE.Types.Location as X |
57 | | -import Development.IDE.Types.Logger as X |
| 1 | +module Development.IDE |
| 2 | +( |
| 3 | + -- TODO It would be much nicer to enumerate all the exports |
| 4 | + -- and organize them in sections |
| 5 | + module X |
| 6 | + |
| 7 | +) where |
| 8 | + |
| 9 | +import Development.IDE.Core.Actions as X (getAtPoint, |
| 10 | + getDefinition, |
| 11 | + getTypeDefinition, |
| 12 | + useE, useNoFileE, |
| 13 | + usesE) |
| 14 | +import Development.IDE.Core.FileExists as X (getFileExists) |
| 15 | +import Development.IDE.Core.FileStore as X (getFileContents) |
| 16 | +import Development.IDE.Core.IdeConfiguration as X (IdeConfiguration (..), |
| 17 | + isWorkspaceFile) |
| 18 | +import Development.IDE.Core.OfInterest as X (getFilesOfInterestUntracked) |
| 19 | +import Development.IDE.Core.RuleTypes as X |
| 20 | +import Development.IDE.Core.Rules as X (IsHiFileStable (..), |
| 21 | + getClientConfigAction, |
| 22 | + getParsedModule) |
| 23 | +import Development.IDE.Core.Service as X (runAction) |
| 24 | +import Development.IDE.Core.Shake as X (FastResult (..), |
| 25 | + IdeAction (..), |
| 26 | + IdeRule, IdeState, |
| 27 | + RuleBody (..), |
| 28 | + ShakeExtras, |
| 29 | + actionLogger, |
| 30 | + define, |
| 31 | + defineEarlyCutoff, |
| 32 | + defineNoDiagnostics, |
| 33 | + getClientConfig, |
| 34 | + getPluginConfig, |
| 35 | + ideLogger, |
| 36 | + runIdeAction, |
| 37 | + shakeExtras, use, |
| 38 | + useNoFile, |
| 39 | + useNoFile_, |
| 40 | + useWithStale, |
| 41 | + useWithStaleFast, |
| 42 | + useWithStaleFast', |
| 43 | + useWithStale_, |
| 44 | + use_, uses, uses_) |
| 45 | +import Development.IDE.GHC.Compat as X (GhcVersion (..), |
| 46 | + ghcVersion) |
| 47 | +import Development.IDE.GHC.Error as X |
| 48 | +import Development.IDE.GHC.Util as X |
| 49 | +import Development.IDE.Graph as X (Action, RuleResult, |
| 50 | + Rules, action) |
| 51 | +import Development.IDE.Plugin as X |
| 52 | +import Development.IDE.Types.Diagnostics as X |
| 53 | +import Development.IDE.Types.HscEnvEq as X (HscEnvEq (..), |
| 54 | + hscEnv, |
| 55 | + hscEnvWithImportPaths) |
| 56 | +import Development.IDE.Types.Location as X |
| 57 | +import Development.IDE.Types.Logger as X |
0 commit comments