graphtype: A simple tool to illustrate dependencies between Haskell types

[ bsd3, program, text ] [ Propose Tags ]

This tools produces diagrams of Haskell type interdependencies in the given source. Actual drawing is done by graphviz tools (dot).


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.1.1, 0.1.2, 0.2.0
Dependencies base (>=3 && <5), containers, haskell-src-exts, haskell98, uniplate [details]
License BSD-3-Clause
Author Dmitry Astapov
Maintainer Dmity Astapov <dastapov@gmail.com>
Category Text
Uploaded by DmitryAstapov at 2009-08-22T22:11:54Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables graphtype
Downloads 3584 total (10 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-31 [all 7 reports]

Readme for graphtype-0.1

[back to package description]
Tool to produce dependency diagram from the set of *.hs files. Diagram
will include specified top-level declaration and all user-defined
types referencd from there (recursively).

To see dependency diagram for type MegaData and all other types
referenced from there, use:

        graphtype MegaData *.hs

User can choose to omit types and newtypes that do not contain
anything other than library types - this could be useful to unclutter
really large diagrams. Try running "graphtype --trim ..." and see
whether it helps you or otherwise.