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 9a5c60b commit 2547212Copy full SHA for 2547212
ghcide/src/Development/IDE/Core/Actions.hs
@@ -61,7 +61,8 @@ getAtPoint file pos = runMaybeT $ do
61
(hf, mapping) <- useE GetHieAst file
62
env <- hscEnv . fst <$> useE GhcSession file
63
dkMap <- lift $ maybe (DKMap mempty mempty) fst <$> runMaybeT (useE GetDocMap file)
64
- (hi, _) <- useE GetModIfaceFromDisk file
+ void $ useE TypeCheck file
65
+ (hi, _) <- useE GetModIface file
66
67
!pos' <- MaybeT (return $ fromCurrentPosition mapping pos)
68
0 commit comments