ghc-dump
A GHC plugin and library for analysing GHC Core (by bgamari)
ghc-exactprint
GHC version of haskell-src-exts exactPrint (by alanz)
ghc-dump | ghc-exactprint | |
---|---|---|
1 | 2 | |
53 | 70 | |
- | - | |
0.0 | 8.2 | |
about 2 years ago | 8 days ago | |
Haskell | Haskell | |
- | BSD 3-clause "New" or "Revised" License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
ghc-dump
Posts with mentions or reviews of ghc-dump.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-07-15.
-
Deep embedding of Haskell in Haskell
It kind of sounds like you want to script GHC. There's a plugin system for that, you could check out https://github.com/bgamari/ghc-dump for example. This library also provides a consistent representation for Core across multiple GHC versions.
ghc-exactprint
Posts with mentions or reviews of ghc-exactprint.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-06-10.
-
Learning materials for ghc-exactprint?
If you're synthesizing code, beware that addAnnotationsForPretty will always add a preceding space, so it will break layout. The best approach I've found for synthesizing code is to construct an HsExpr GhcPs, use the GHC ppr stuff to prettty print it, and then parse that in order to get reasonable Anns for it.