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 87cfc28 commit 9b72bf0Copy full SHA for 9b72bf0
hls-graph/src/Development/IDE/Graph/Internal/Action.hs
@@ -121,7 +121,8 @@ apply ks = do
121
stack <- Action $ asks actionStack
122
(is, vs) <- liftIO $ build db stack ks
123
ref <- Action $ asks actionDeps
124
- liftIO $ modifyIORef' ref (ResultDeps [force $ fromListKeySet $ toList is] <>)
+ let !ks = force $ fromListKeySet $ toList is
125
+ liftIO $ modifyIORef' ref (ResultDeps [ks] <>)
126
pure vs
127
128
-- | Evaluate a list of keys without recording any dependencies.
0 commit comments