[Git][ghc/ghc][wip/jeltsch/textual-bytecode-output] Make declaration paths rendered horizontally
Wolfgang Jeltsch pushed to branch wip/jeltsch/textual-bytecode-output at Glasgow Haskell Compiler / GHC Commits: 32621828 by Wolfgang Jeltsch at 2026-07-10T18:01:00+03:00 Make declaration paths rendered horizontally - - - - - 1 changed file: - compiler/GHC/ByteCode/Show.hs Changes: ===================================== compiler/GHC/ByteCode/Show.hs ===================================== @@ -328,7 +328,7 @@ pprSrcSpan = entry (text "source span:") . ppr . unBinSrcSpan -- | […] pprDeclarationPath :: [String] -> SDoc -pprDeclarationPath = entry (text "declaration path:") . vcat . map text +pprDeclarationPath = entry (text "declaration path:") . hsep . map text -- | […] pprFreeVariables :: [OccName] -> SDoc View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/326218284b4f78460697fd7db33036a8... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/326218284b4f78460697fd7db33036a8... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)