We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a16ec9 commit de608cfCopy full SHA for de608cf
1 file changed
haskell-debugger/GHC/Debugger/Monad.hs
@@ -876,6 +876,10 @@ findHsDebuggerViewUnitId mod_graph = do
876
if any (\(l,h) -> l <= version && version < h) supported_ranges
877
then return (Just hdv_uid)
878
else throwM UnsupportedHsDbgViewVersion{supportedVersions=supported_ranges, actualVersion=version}
879
+ Nothing
880
+ | "inplace" `L.isSuffixOf` unitIdString hdv_uid
881
+ -- will be built as a target later
882
+ -> return (Just hdv_uid)
883
Nothing ->
884
error "Could not find unit info for haskell-debugger-view"
885
[] -> do
0 commit comments