├── .gitignore ├── ChangeLog.md ├── LICENSE ├── README.md ├── Setup.hs ├── app └── Main.hs ├── ghc-compile-stats.cabal ├── package.yaml ├── src └── GhcCompileStats.hs ├── stack.yaml ├── stack.yaml.lock └── test └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | *~ -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/app/Main.hs -------------------------------------------------------------------------------- /ghc-compile-stats.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/ghc-compile-stats.cabal -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/package.yaml -------------------------------------------------------------------------------- /src/GhcCompileStats.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/src/GhcCompileStats.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parsonsmatt/ghc-compile-stats/HEAD/test/Spec.hs --------------------------------------------------------------------------------