packages feed

profiteur 0.1.0.1 → 0.1.1.0

raw patch · 3 files changed

+12/−2 lines, 3 files

Files

CHANGELOG view
@@ -1,3 +1,6 @@+- 0.1.1.0+    * Ignore extra information in `.prof` file+ - 0.1.0.1     * Loosen `attoparsec` dependency 
profiteur.cabal view
@@ -1,5 +1,5 @@ Name:                profiteur-Version:             0.1.0.1+Version:             0.1.1.0 Synopsis:            Treemap visualiser for GHC prof files Description:         Treemap visualiser for GHC prof files Homepage:            http://github.com/jaspervdj/profiteur
src/Profiteur/Parser.hs view
@@ -50,7 +50,7 @@     inheritedTime <- AP8.double     skipHorizontalSpace     inheritedAlloc <- AP8.double-    AP8.endOfLine+    skipToEol      children <- AP.many' $ parseContCentreNode (indent + 1) @@ -79,3 +79,10 @@ -------------------------------------------------------------------------------- skipHorizontalSpace :: AP.Parser () skipHorizontalSpace = AP.skipWhile AP8.isHorizontalSpace+++--------------------------------------------------------------------------------+skipToEol :: AP.Parser ()+skipToEol = do+    AP.skipWhile (not . AP8.isEndOfLine)+    AP8.endOfLine