incremental-parser 0.2.5.2 → 0.2.5.3
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~tastyPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: tasty
API changes (from Hackage documentation)
+ Text.ParserCombinators.Incremental: infixl 4 +<*>
+ Text.ParserCombinators.Incremental: infixl 5 ><
- Control.Applicative.Monoid: class (Alternative f, MonoidApplicative f) => MonoidAlternative f where moptional x = x <|> pure mempty concatMany x = many' where many' = some' <|> pure mempty some' = x >< many' concatSome x = some' where many' = some' <|> pure mempty some' = x >< many'
+ Control.Applicative.Monoid: class (Alternative f, MonoidApplicative f) => MonoidAlternative f
- Control.Applicative.Monoid: class Applicative f => MonoidApplicative f where (+<*>) = (<*>) a >< b = mappend <$> a +<*> b
+ Control.Applicative.Monoid: class Applicative f => MonoidApplicative f
Files
- incremental-parser.cabal +2/−2
incremental-parser.cabal view
@@ -1,5 +1,5 @@ Name: incremental-parser-Version: 0.2.5.2+Version: 0.2.5.3 Cabal-Version: >= 1.10 Build-Type: Simple Synopsis: Generic parser library capable of providing partial results from partial input.@@ -38,7 +38,7 @@ Default-Language: Haskell2010 Build-Depends: base < 5, monoid-subclasses < 0.5, QuickCheck >= 2 && < 3, checkers >= 0.3.2 && < 0.5,- tasty >= 0.7 && < 0.13, tasty-quickcheck >= 0.7 && < 1.0+ tasty >= 0.7 && < 1.1, tasty-quickcheck >= 0.7 && < 1.0 Main-is: Test/TestIncrementalParser.hs Other-Modules: Text.ParserCombinators.Incremental, Text.ParserCombinators.Incremental.LeftBiasedLocal, Text.ParserCombinators.Incremental.Symmetric,