gll 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+5/−3 lines, 2 filesdep ~base
Dependency ranges changed: base
Files
- gll.cabal +3/−3
- src/GLL/Combinators/Combinators.hs +2/−0
gll.cabal view
@@ -3,7 +3,7 @@ -- The name of the package. name: gll-version: 0.1.0.0+version: 0.1.0.1 synopsis: GLL parser with simple combinator interface license: BSD3 license-file: LICENSE@@ -12,11 +12,11 @@ category: Compilers build-type: Simple cabal-version: >=1.8-tested-with: GHC == 7.6.3+tested-with: GHC == 7.10.1 library hs-source-dirs : src- build-depends : base >=4.5 && <= 4.6.0.1+ build-depends : base >=4.5 && <= 4.8.0.0 , containers >= 0.4 , array exposed-modules : GLL.Combinators.Combinators
src/GLL/Combinators/Combinators.hs view
@@ -10,6 +10,8 @@ (<::=>) ) where +import Prelude hiding ((<*>),(<*),(<$>),(<$))+ import GLL.Common import GLL.Types.Grammar hiding (epsilon) import GLL.Types.Abstract