vacuum 1.0.0.1 → 1.0.0.2
raw patch · 8 files changed
+3/−42 lines, 8 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- src/GHC/Vacuum.hs +0/−3
- src/GHC/Vacuum/ClosureType.hs +0/−7
- src/GHC/Vacuum/Pretty.hs +0/−15
- src/GHC/Vacuum/Pretty/Dot.hs +0/−1
- src/GHC/Vacuum/Q.hs +0/−8
- src/GHC/Vacuum/Types.hs +0/−2
- src/GHC/Vacuum/Util.hs +0/−4
- vacuum.cabal +3/−2
src/GHC/Vacuum.hs view
@@ -74,7 +74,6 @@ --,module GHC.Vacuum.Q ) where - import GHC.Vacuum.Q import GHC.Vacuum.Util import GHC.Vacuum.Types@@ -510,5 +509,3 @@ } -}--
src/GHC/Vacuum/ClosureType.hs view
@@ -1,4 +1,3 @@- module GHC.Vacuum.ClosureType ( isFun,isThunk,isCon ,ClosureType(..)@@ -262,10 +261,4 @@ toEnum 71 = CATCH_STM_FRAME toEnum 72 = WHITEHOLE toEnum n = error ("toEnum: ClosureType: invalid ClosureType: " ++ show n)------
src/GHC/Vacuum/Pretty.hs view
@@ -1,6 +1,3 @@--- module GHC.Vacuum.Pretty ( module GHC.Vacuum.Pretty ,module GHC.Vacuum.Pretty.Dot@@ -20,7 +17,6 @@ ----------------------------------------------------------------------------- - toAdjPair :: (HNodeId, HNode) -> (Int, [Int]) toAdjPair = mapsnd nodePtrs @@ -95,14 +91,3 @@ ps) ----------------------------------------------------------------------------------------
src/GHC/Vacuum/Pretty/Dot.hs view
@@ -1,4 +1,3 @@- module GHC.Vacuum.Pretty.Dot ( graphToDot ,ppGraph,ppEdge,gStyle
src/GHC/Vacuum/Q.hs view
@@ -98,7 +98,6 @@ as <- unsafeInterleaveIO (getQContents q) return (a:as) - takeWhileQ :: (a -> Bool) -> Q a -> IO [a] takeWhileQ p q = do a <- takeQ q@@ -108,11 +107,4 @@ as <- unsafeInterleaveIO (takeWhileQ p q) return (a:as) ---- ---------------------------------------------------
src/GHC/Vacuum/Types.hs view
@@ -1,6 +1,5 @@ {-# LANGUAGE TypeSynonymInstances #-} - module GHC.Vacuum.Types ( module GHC.Vacuum.Types ) where@@ -97,4 +96,3 @@ ,graph = mempty} -------------------------------------------------
src/GHC/Vacuum/Util.hs view
@@ -1,6 +1,5 @@ {-# LANGUAGE BangPatterns #-} - module GHC.Vacuum.Util ( module GHC.Vacuum.Util ) where@@ -80,6 +79,3 @@ -} ---------------------------------------------------
vacuum.cabal view
@@ -1,5 +1,5 @@ name: vacuum-version: 1.0.0.1+version: 1.0.0.2 cabal-version: >= 1.6 build-type: Simple license: LGPL@@ -7,6 +7,7 @@ category: Debug, GHC author: Matt Morrow copyright: (c) Matt Morrow 2009+-- Maintained through https://github.com/haskell-pkg-janitors. Join us! maintainer: Conrad Parker <conrad@metadecks.org> homepage: http://web.archive.org/web/20100410115820/http://moonpatio.com/vacuum/ stability: experimental@@ -36,4 +37,4 @@ -- source-repository head type: git- location: git://github.com/kfish/vacuum.git+ location: git://github.com/haskell-pkg-janitors/vacuum.git