rename modules lexer->lex, parser->parse
This commit is contained in:
parent
e08452f0db
commit
2b73907119
6 changed files with 11 additions and 11 deletions
|
@ -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
|
|
@ -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)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue