This repository was archived by the owner on Aug 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 237
Provide --show-interface option to dump interfaces #645
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Currently output is not pretty at all.
|
This will prove very relevant to my |
Like ghcs own --show-iface this flag dumps a binary interface file to stdout in a human (and machine) readable fashion. Currently it uses json as output format.
dmalikov
added a commit
to dmalikov/ghc
that referenced
this pull request
Aug 5, 2017
It seems to that double quotes is not escaped well at the moment. We'd noticed this with @alexbiehl during the work on haskell/haddock#645
* origin/master: (22 commits) Fix renaming after instance signature specializing (haskell#660) Prepare haddock-library-1.4.5 release Changelog for haddock-library Fixup haddock Move `DocMarkup` from haddock-api to haddock-library (haskell#659) Bump haddock to 2.18.2, haddock-library to 1.4.5 Update README Mention new-build in README Add cheatsheet to haddock.cabal Import @aisamanra's Haddock cheatsheet Beef up haddock description (haskell#658) Drop obsolete/misleading `stability: experimental` haddock-api: add changelog pointing to haddock's changelog Refactor .cabal to use sub-lib for vendored lib Avoid trivial use of LambdaCase Tweak haddock-api.cabal for pending release Prepare 2.18.1 release (haskell#657) Fix compilation of lib:haddock-library w/ GHC < 8 Fix haskell#249 (haskell#655) Avoid missing home module warning (haskell#652) ...
* origin/master: Fix: Generate pattern signatures for constructors exported as patterns (haskell#663)
It would result in unused import if the Bifunctor instance is not generated.
Thank you @dmalikov! Nice work! |
bgamari
pushed a commit
to bgamari/ghc
that referenced
this pull request
Aug 7, 2017
It seems to that double quotes is not escaped well at the moment. We'd noticed this with @alexbiehl during the work on haskell/haddock#645
bgamari
pushed a commit
to bgamari/ghc
that referenced
this pull request
Aug 25, 2017
It seems to that double quotes is not escaped well at the moment. We'd noticed this with @alexbiehl during the work on haskell/haddock#645 (cherry picked from commit e8fe12f)
bgamari
pushed a commit
to bgamari/ghc
that referenced
this pull request
Aug 25, 2017
It seems to that double quotes is not escaped well at the moment. We'd noticed this with @alexbiehl during the work on haskell/haddock#645 (cherry picked from commit e8fe12f)
bgamari
pushed a commit
to bgamari/ghc
that referenced
this pull request
Aug 25, 2017
It seems to that double quotes is not escaped well at the moment. We'd noticed this with @alexbiehl during the work on haskell/haddock#645 (cherry picked from commit e8fe12f)
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I have spent lots of time debugging haddock recently and I think this would have helped me a lot. Like ghcs own --show-iface this flag dumps a binary interface file to
stdout in a human (and machine) readable fashion. Currently it uses json as output format.