1
Fork 0

refactor dialect into a non enum and separate to own file

This commit is contained in:
Jake Wheat 2016-02-12 12:51:06 +02:00
commit 1b4eefc431
22 changed files with 304 additions and 252 deletions

View file

@ -36,7 +36,8 @@ library
Language.SQL.SimpleSQL.Lex,
Language.SQL.SimpleSQL.Syntax
Other-Modules: Language.SQL.SimpleSQL.Errors,
Language.SQL.SimpleSQL.Combinators
Language.SQL.SimpleSQL.Combinators,
Language.SQL.SimpleSQL.Dialect
other-extensions: TupleSections
build-depends: base >=4.5 && <4.9,
parsec >=3.1 && <3.2,
@ -63,7 +64,8 @@ Test-Suite Tests
Language.SQL.SimpleSQL.Lex,
Language.SQL.SimpleSQL.Syntax,
Language.SQL.SimpleSQL.Errors,
Language.SQL.SimpleSQL.Combinators
Language.SQL.SimpleSQL.Combinators,
Language.SQL.SimpleSQL.Dialect
Language.SQL.SimpleSQL.ErrorMessages,
Language.SQL.SimpleSQL.FullQueries,