diff options
| author | Danny Navarro <j@dannynavarro.net> | 2015-09-18 15:02:51 +0200 |
|---|---|---|
| committer | Danny Navarro <j@dannynavarro.net> | 2015-09-18 15:02:51 +0200 |
| commit | d88acf3d0e8f9b9d5345477b23e329cefec89b6f (patch) | |
| tree | 4c460cf0955ae9a5b7b002a08696740cd9396d15 /Data/GraphQL/Parser.hs | |
| parent | c9c1137cebe5629f145f55fc941cb09ce7b3d02a (diff) | |
| download | graphql-d88acf3d0e8f9b9d5345477b23e329cefec89b6f.tar.gz | |
Refine numeric types
Diffstat (limited to 'Data/GraphQL/Parser.hs')
| -rw-r--r-- | Data/GraphQL/Parser.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Data/GraphQL/Parser.hs b/Data/GraphQL/Parser.hs index fa8c532..99700c0 100644 --- a/Data/GraphQL/Parser.hs +++ b/Data/GraphQL/Parser.hs @@ -150,7 +150,6 @@ value :: Parser Value value = ValueVariable <$> variable -- TODO: Handle maxBound, Int32 in spec. <|> ValueInt <$> tok (signed decimal) - -- There is a stock `parser` for double but not for float. <|> ValueFloat <$> tok (signed double) <|> ValueBoolean <$> bool -- TODO: Handle escape characters, unicode, etc |
