uu-parsinglib 2.7.4 → 2.7.4.1
raw patch · 3 files changed
+14/−5 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Text.ParserCombinators.UU.Core: pState :: P st st
Files
- src/Text/ParserCombinators/UU/CHANGELOG.hs +6/−3
- src/Text/ParserCombinators/UU/Core.hs +1/−0
- uu-parsinglib.cabal +7/−2
src/Text/ParserCombinators/UU/CHANGELOG.hs view
@@ -1,10 +1,13 @@ -- | This module just contains the CHANGELOG ----- export of constructors of LineCol and LineColPos exported---+-- Version 2.7.4.1+-- +-- export of constructors of LineCol and LineColPos +-- export of pState from Core.hs+-- -- Version 2.7.4 ----- Made some abstrcat interpretation a bit simpler, and made comparing lengths less trict. Some times the abstrcat interpretation would <<loop>>+-- Made some abstract interpretation a bit simpler, and made comparing lengths less trict. Some times the abstrcat interpretation would <<loop>> -- -- Version 2.7.3.3 --
src/Text/ParserCombinators/UU/Core.hs view
@@ -31,6 +31,7 @@ amb, pErrors, pPos,+ pState, pEnd, pSwitch, pSymExt,
uu-parsinglib.cabal view
@@ -1,5 +1,5 @@ Name: uu-parsinglib-Version: 2.7.4+Version: 2.7.4.1 Build-Type: Simple License: MIT Copyright: S Doaitse Swierstra @@ -10,7 +10,6 @@ Homepage: http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators Bug-reports: mailto:doaitse@swierstra.net Synopsis: Fast, online, error-correcting, monadic, applicative, merging, permuting, idiomatic parser combinators.-Cabal-Version: >=1.4 Description: New version of the Utrecht University parser combinator library, which provides online, error correction, annotation free, applicative style parser combinators. In addition to this we do provide a monadic and idomatic interface. Parsers do analyse themselves to avoid commonly made errors. A recent addition was the combinator @`<||>`@ and @@ -29,6 +28,12 @@ . We maintain a low frequency mailing for discussing the package. You can subscribe at: <https://mail.cs.uu.nl/mailman/listinfo/parsing> Category: Parsing, Text++cabal-version: >= 1.6++source-repository head+ type: svn+ location: https://svn.science.uu.nl/repos/project.STEC.uu-parsinglib/trunk Library hs-source-dirs: src