Initial implementation of GraphQL pretty printer

This just typechecks. It needs to be cleaned and tested. Tests have been
deactivated.
This commit is contained in:
Danny Navarro
2015-09-21 18:26:22 +02:00
parent 3d97b3e2ff
commit e74ee640a8
2 changed files with 248 additions and 14 deletions

View File

@ -24,24 +24,25 @@ library
ghc-options: -Wall
exposed-modules: Data.GraphQL.AST
Data.GraphQL.Parser
Data.GraphQL.Printer
build-depends: base >= 4.7 && < 5,
text >=0.11.3.1,
attoparsec >=0.10.4.0
test-suite golden
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: golden.hs
ghc-options: -Wall
other-modules: Paths_graphql
build-depends: base >= 4.6 && <5,
bytestring,
text,
attoparsec,
tasty >=0.10,
tasty-golden,
graphql
-- test-suite golden
-- default-language: Haskell2010
-- type: exitcode-stdio-1.0
-- hs-source-dirs: tests
-- main-is: golden.hs
-- ghc-options: -Wall
-- other-modules: Paths_graphql
-- build-depends: base >= 4.6 && <5,
-- bytestring,
-- text,
-- attoparsec,
-- tasty >=0.10,
-- tasty-golden,
-- graphql
source-repository head
type: git