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 7262431 commit 214971eCopy full SHA for 214971e
ghcide/src/Development/IDE/Core/Rules.hs
@@ -1026,7 +1026,9 @@ getLinkableType f = use_ NeedsCompilation f
1026
1027
-- needsCompilationRule :: Rules ()
1028
needsCompilationRule :: NormalizedFilePath -> Action (IdeResultNoDiagnosticsEarlyCutoff (Maybe LinkableType))
1029
-needsCompilationRule file | "boot" `isSuffixOf` (fromNormalizedFilePath file) = pure (Just $ encodeLinkableType Nothing, Just Nothing)
+needsCompilationRule file
1030
+ | "boot" `isSuffixOf` (fromNormalizedFilePath file) =
1031
+ pure (Just $ encodeLinkableType Nothing, Just Nothing)
1032
needsCompilationRule file = do
1033
graph <- useNoFile GetModuleGraph
1034
res <- case graph of
0 commit comments