[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: d1006f95 by Rodrigo Mesquita at 2026-03-18T17:35:10+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,13 @@ +module GHC.Stack.Decode.Experimental ( + -- * High-level stack decoders + decodeStackWithIpe, + -- * Stack decoder helpers + decodeStackWithFrameUnpack, + -- * StackEntry + StackEntry(..), + -- * Pretty printing + prettyStackFrameWithIpe, + prettyStackEntry, + ) where + +import GHC.Internal.Stack.Decode View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/d1006f95cfb6b6edbdac0a837f5e1403... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/d1006f95cfb6b6edbdac0a837f5e1403... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Rodrigo Mesquita (@alt-romes)