Add GraphQL parser

WIP: This parser just type checks, it hasn't even been tested manually.
Check new tasks in the TODO file and the TODO comments in the code for
more gotchas.
This commit is contained in:
Danny Navarro
2015-09-13 13:51:37 +02:00
parent 44a2ff4765
commit 0e67fdc21c
3 changed files with 308 additions and 1 deletions

View File

@ -18,8 +18,10 @@ cabal-version: >=1.10
library
exposed-modules: Data.GraphQL.AST
Data.GraphQL.Parser
build-depends: base >= 4.7 && < 5,
text >=0.11.3.1
text >=0.11.3.1,
attoparsec >=0.10.4.0
default-language: Haskell2010
source-repository head