summaryrefslogtreecommitdiff
path: root/Data/GraphQL/Parser.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Data/GraphQL/Parser.hs')
-rw-r--r--Data/GraphQL/Parser.hs12
1 files changed, 1 insertions, 11 deletions
diff --git a/Data/GraphQL/Parser.hs b/Data/GraphQL/Parser.hs
index 1f7254b..66d913d 100644
--- a/Data/GraphQL/Parser.hs
+++ b/Data/GraphQL/Parser.hs
@@ -3,7 +3,7 @@
module Data.GraphQL.Parser where
import Prelude hiding (takeWhile)
-import Control.Applicative (Alternative, (<|>), empty, many, optional)
+import Control.Applicative ((<|>), empty, many, optional)
import Control.Monad (when)
import Data.Char
@@ -15,23 +15,13 @@ import Data.Attoparsec.Text
, decimal
, double
, endOfLine
- , isEndOfLine
- , letter
, many1
, manyTill
, option
, peekChar
, satisfy
- , sepBy
, sepBy1
- , skipMany
- , skipSpace
- , skipWhile
, signed
- , space
- , takeTill
- , takeWhile
- , takeWhile1
)
import Data.GraphQL.AST