packages feed

ChristmasTree 0.1 → 0.1.1

raw patch · 2 files changed

+4/−4 lines, 2 filesdep ~basePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base

API changes (from Hackage documentation)

- Text.GRead.Grammar: DGD :: DLNontDefs a env -> DGram a env
+ Text.GRead.Grammar: DGD :: (DLNontDefs a env) -> DGram a env
- Text.GRead.Grammar: DGG :: DGrammar a -> DGram a env
+ Text.GRead.Grammar: DGG :: (DGrammar a) -> DGram a env
- Text.GRead.Grammar: DGrammar :: Ref a env -> Env DGram env env -> DGrammar a
+ Text.GRead.Grammar: DGrammar :: (Ref a env) -> (Env DGram env env) -> DGrammar a
- Text.GRead.Grammar: Grammar :: Ref a env -> Env Productions env env -> Grammar a
+ Text.GRead.Grammar: Grammar :: (Ref a env) -> (Env Productions env env) -> Grammar a

Files

ChristmasTree.cabal view
@@ -1,7 +1,7 @@-cabal-version:      >=1.2+cabal-version:      >=1.2.3 build-type:         Simple name:               ChristmasTree-version:            0.1+version:            0.1.1 license:            LGPL license-file:       COPYRIGHT maintainer:         Marcos Viera <mviera@fing.edu.uy>@@ -11,7 +11,7 @@ category:           Parsing  stability:          Experimental copyright:          Universiteit Utrecht-build-depends:      base, haskell98, template-haskell, containers,+build-depends:      base >= 2 && < 4, haskell98, template-haskell, containers,                     fgl>=5.4, TTTAS, uulib  exposed-modules:    Text.GRead, Text.GShow,                      Text.GRead.Derive, Text.GRead.Grammar
src/Text/GRead.hs view
@@ -108,7 +108,7 @@     show Close    = ")"  instance UU.Symbol Token where-  deleteCost _ = 5+  deleteCost _ = 5#   -- PARSE ----------------------------------------------------------------------