1
Fork 0

rename modules lexer->lex, parser->parse

This commit is contained in:
Jake Wheat 2016-02-12 12:22:19 +02:00
parent e08452f0db
commit 2b73907119
6 changed files with 11 additions and 11 deletions
Language/SQL/SimpleSQL

View file

@ -10,7 +10,7 @@ parsec
> -- | This is the module contains a Lexer for SQL.
> {-# LANGUAGE TupleSections #-}
> module Language.SQL.SimpleSQL.Lexer
> module Language.SQL.SimpleSQL.Lex
> (Token(..)
> ,lexSQL
> ,prettyToken

View file

@ -176,7 +176,7 @@ fixing them in the syntax but leaving them till the semantic checking
> {-# LANGUAGE TupleSections #-}
> -- | This is the module with the parser functions.
> module Language.SQL.SimpleSQL.Parser
> module Language.SQL.SimpleSQL.Parse
> (parseQueryExpr
> ,parseValueExpr
> ,parseStatement
@ -202,7 +202,7 @@ fixing them in the syntax but leaving them till the semantic checking
> import Language.SQL.SimpleSQL.Syntax
> import Language.SQL.SimpleSQL.Combinators
> import Language.SQL.SimpleSQL.Errors
> import qualified Language.SQL.SimpleSQL.Lexer as L
> import qualified Language.SQL.SimpleSQL.Lex as L
> import Data.Maybe
> import Text.Parsec.String (GenParser)