CoreDump 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+6/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CoreDump.cabal +1/−1
- src/CoreDump/Show.hs +5/−2
CoreDump.cabal view
@@ -1,5 +1,5 @@ name: CoreDump-version: 0.1.0.0+version: 0.1.0.1 synopsis: A GHC plugin for printing GHC's internal Core data structures.
src/CoreDump/Show.hs view
@@ -148,12 +148,15 @@ instance Show PackageKey where show = show . packageKeyString +-- Outputable outputs are not generating valid Haskell syntax, so we use an+-- extra `show` here.+ instance Show Name where- show = showOutputable . nameOccName+ show = show . showOutputable . nameOccName -- deriving instance Show Name instance Show OccName where- show = showOutputable+ show = show . showOutputable instance Show Coercion where show _ = "Coercion"