uu-parsinglib 2.7.2 → 2.7.2.1
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Text.ParserCombinators.UU.MergeAndPermute: mkGram :: Show a => P t a -> Gram (P t) a
+ Text.ParserCombinators.UU.MergeAndPermute: mkGram :: P t a -> Gram (P t) a
Files
- src/Text/ParserCombinators/UU/CHANGELOG.hs +4/−0
- src/Text/ParserCombinators/UU/MergeAndPermute.hs +1/−1
- uu-parsinglib.cabal +1/−1
src/Text/ParserCombinators/UU/CHANGELOG.hs view
@@ -1,5 +1,9 @@ -- | This module just contains the CHANGELOG --+-- Version 2.7.2.1+--+-- removed a left-over from debugging+-- -- Version 2.7.2 -- -- fixed a subtle bug in the merging parsers caused by name shielding ;-{{
src/Text/ParserCombinators/UU/MergeAndPermute.hs view
@@ -29,7 +29,7 @@ -- Here we use the functions `getOneP` and `getZeroP` which are provided in the uu-parsinglib package, -- but they could easily be provided by other packages too. -mkGram :: Show a => P t a -> Gram (P t) a+mkGram :: P t a -> Gram (P t) a mkGram p = case getOneP p of Just q -> Gram [q `Seq` Gram [] (Just id)] (getZeroP p) Nothing -> Gram [] (getZeroP p)
uu-parsinglib.cabal view
@@ -1,5 +1,5 @@ Name: uu-parsinglib-Version: 2.7.2+Version: 2.7.2.1 Build-Type: Simple License: MIT Copyright: S Doaitse Swierstra