[Git][ghc/ghc][master] ghci: remove unused showBreakArray function
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Wed Feb 26 00:25:56 UTC 2025
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
2d6a63ab by Cheng Shao at 2025-02-25T19:25:20-05:00
ghci: remove unused showBreakArray function
GHCi.BreakArray.showBreakArray is not used anywhere, hence the
housecleaning.
- - - - -
1 changed file:
- libraries/ghci/GHCi/BreakArray.hs
Changes:
=====================================
libraries/ghci/GHCi/BreakArray.hs
=====================================
@@ -30,11 +30,9 @@ module GHCi.BreakArray
, setupBreakpoint
, breakOn
, breakOff
- , showBreakArray
) where
import Prelude -- See note [Why do we import Prelude here?]
-import Control.Monad
import GHC.Exts
import GHC.IO ( IO(..) )
@@ -48,13 +46,6 @@ breakOff, breakOn :: Int
breakOn = 0
breakOff = -1
-showBreakArray :: BreakArray -> IO ()
-showBreakArray array = do
- forM_ [0 .. (size array - 1)] $ \i -> do
- val <- readBreakArray array i
- putStr $ ' ' : show val
- putStr "\n"
-
setupBreakpoint :: BreakArray -> Int -> Int -> IO Bool
setupBreakpoint breakArray ind val
| safeIndex breakArray ind = do
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/2d6a63ab66427a3ee6b0861656f3fc4f59f7692c
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/2d6a63ab66427a3ee6b0861656f3fc4f59f7692c
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250225/6d826da8/attachment-0001.html>
More information about the ghc-commits
mailing list