summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCsaba Hruska <csaba.hruska@gmail.com>2018-02-02 14:58:47 +0100
committerCsaba Hruska <csaba.hruska@gmail.com>2018-02-02 14:58:47 +0100
commitcf9ed24f56483af23f053a12c91b260163ebf31f (patch)
treecc9b7a9fb8cb7322b468bc02697269f96fafdf70 /src
parentff6e3b136eede172f20ea8a0f7017ad1ecd029b8 (diff)
switch to megaparsec 6.4
Diffstat (limited to 'src')
-rw-r--r--src/LambdaCube/Compiler/Lexer.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LambdaCube/Compiler/Lexer.hs b/src/LambdaCube/Compiler/Lexer.hs
index c3f4e285..29b88930 100644
--- a/src/LambdaCube/Compiler/Lexer.hs
+++ b/src/LambdaCube/Compiler/Lexer.hs
@@ -23,11 +23,11 @@ import Control.Monad.RWS
23import Control.Applicative 23import Control.Applicative
24import Control.Arrow 24import Control.Arrow
25 25
26import Text.Megaparsec hiding (State, ParseError) 26import Text.Megaparsec hiding (State, ParseError, many, some)
27import Text.Megaparsec.Char 27import Text.Megaparsec.Char
28import Text.Megaparsec.Char.Lexer hiding (lexeme, symbol) 28import Text.Megaparsec.Char.Lexer hiding (lexeme, symbol)
29import qualified Text.Megaparsec as P 29import qualified Text.Megaparsec as P
30import Text.Megaparsec as ParseUtils hiding (try, Message, State, ParseError, lexeme, symbol) 30import Text.Megaparsec as ParseUtils hiding (try, Message, State, ParseError, lexeme, symbol, many, some)
31 31
32import LambdaCube.Compiler.Pretty hiding (parens) 32import LambdaCube.Compiler.Pretty hiding (parens)
33import LambdaCube.Compiler.DesugaredSource 33import LambdaCube.Compiler.DesugaredSource