Add IsList instance for CallStack, restore Show instance for CallStack
Summary: Ties up loose ends from D1894. GHC 7.10.2 and 7.10.3 featured a `Show` instance for `CallStack`, but since it was derived, it broke encapsulation. This adds a `Show` instance which displays the `CallStack` as if it were a `[(String, SrcLoc)]`. To ensure that the output of `Show` is technically a valid Haskell term, we also add a corresponding `IsList CallStack` instance. Reviewers: gridaphobe, austin, hvr, bgamari Reviewed By: gridaphobe, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1903
Showing
- libraries/base/GHC/Exception.hs 2 additions, 2 deletionslibraries/base/GHC/Exception.hs
- libraries/base/GHC/Exts.hs 9 additions, 0 deletionslibraries/base/GHC/Exts.hs
- libraries/base/GHC/Show.hs 3 additions, 0 deletionslibraries/base/GHC/Show.hs
- libraries/base/GHC/Stack.hs 2 additions, 2 deletionslibraries/base/GHC/Stack.hs
- libraries/base/GHC/Stack/Types.hs 8 additions, 1 deletionlibraries/base/GHC/Stack/Types.hs
- libraries/base/changelog.md 8 additions, 1 deletionlibraries/base/changelog.md
Please register or sign in to comment