[Git][ghc/ghc][wip/romes/decode-stack-with-ipe] Expose decodeStackWithIpe from ghc-experimental
Rodrigo Mesquita pushed to branch wip/romes/decode-stack-with-ipe at Glasgow Haskell Compiler / GHC Commits: c7e76720 by Rodrigo Mesquita at 2026-03-18T17:12:52+00:00 Expose decodeStackWithIpe from ghc-experimental This decoding is useful to the debugger and it wasn't originally exported as an oversight. - - - - - 2 changed files: - libraries/ghc-experimental/ghc-experimental.cabal.in - + libraries/ghc-experimental/src/GHC/Stack/Decode/Experimental.hs Changes: ===================================== libraries/ghc-experimental/ghc-experimental.cabal.in ===================================== @@ -41,6 +41,7 @@ library GHC.TypeNats.Experimental GHC.RTS.Flags.Experimental GHC.Stack.Annotation.Experimental + GHC.Stack.Decode.Experimental GHC.Stats.Experimental Prelude.Experimental System.Mem.Experimental ===================================== libraries/ghc-experimental/src/GHC/Stack/Decode/Experimental.hs ===================================== @@ -0,0 +1,12 @@ +module GHC.Stack.Decode.Experimental ( + -- * High-level stack decoders + decodeStackWithIpe, + -- * Stack decoder helpers + decodeStackWithFrameUnpack, + -- * StackEntry + StackEntry(..), + -- * Pretty printing + prettyStackFrameWithIpe, + ) where + +import GHC.Internal.Stack.Decode View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/c7e767206b7f6fa5f9c34f6d68d4dbc0... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/c7e767206b7f6fa5f9c34f6d68d4dbc0... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Rodrigo Mesquita (@alt-romes)