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 6f3b732 commit 5433723Copy full SHA for 5433723
ghcide/src/Development/IDE/LSP/Outline.hs
@@ -40,7 +40,7 @@ moduleOutline
40
moduleOutline _lsp ideState DocumentSymbolParams { _textDocument = TextDocumentIdentifier uri }
41
= case uriToFilePath uri of
42
Just (toNormalizedFilePath' -> fp) -> do
43
- mb_decls <- fmap fst <$> runIdeAction "Outline" (shakeExtras ideState) (useWithStaleFast GetParsedModule fp)
+ mb_decls <- fmap fst <$> runAction "Outline" ideState (useWithStale GetParsedModule fp)
44
pure $ Right $ case mb_decls of
45
Nothing -> DSDocumentSymbols (List [])
46
Just ParsedModule { pm_parsed_source = L _ltop HsModule { hsmodName, hsmodDecls, hsmodImports } }
0 commit comments