parsers 0.8 → 0.8.1
raw patch · 3 files changed
+9/−1 lines, 3 files
Files
- parsers.cabal +1/−1
- src/Text/Parser/Token.hs +4/−0
- src/Text/Parser/Token/Style.hs +4/−0
parsers.cabal view
@@ -1,6 +1,6 @@ name: parsers category: Text, Parsing-version: 0.8+version: 0.8.1 license: BSD3 cabal-version: >= 1.10 license-file: LICENSE
src/Text/Parser/Token.hs view
@@ -1,5 +1,9 @@ {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# OPTIONS_GHC -fspec-constr -fspec-constr-count=8 #-}+{-# LANGUAGE CPP #-}+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif ----------------------------------------------------------------------------- -- | -- Module : Text.Parser.Token
src/Text/Parser/Token/Style.hs view
@@ -1,4 +1,8 @@ {-# LANGUAGE DeriveDataTypeable #-}+{-# LANGUAGE CPP #-}+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif ----------------------------------------------------------------------------- -- | -- Module : Text.Parser.Token.Style