Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Fix UriCaches being leaked #1292

Merged
merged 1 commit into from
Jun 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hie-plugin-api/Haskell/Ide/Engine/PluginsIdeMonads.hs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ withIndefiniteProgress t c f = do
Just wp -> control $ \run -> wp t c (run f)

data IdeState = IdeState
{ moduleCache :: GhcModuleCache
{ moduleCache :: !GhcModuleCache
-- | A queue of requests to be performed once a module is loaded
, requestQueue :: Map.Map FilePath [UriCacheResult -> IdeM ()]
, extensibleState :: !(Map.Map TypeRep Dynamic)
Expand Down