I'm trying to do some parsing in Haskell using Parsec. I've got a number of parsers in my code, but am getting an error on one of them:

expression2 =
    do (operator lexer "|"
        a <- alternate
        as <- expression2
        return $ a:as
  ) <|> return []

The error is parse error on input '<-, on the a <- alternate line.

Can anyone explain why I'm getting this error, and how to fix it?

Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Did you put the parens in the wrong place?

expression2 =
   (do  operator lexer "|"
        a <- alternate
        as <- expression2
        return $ a:as) <|> return []
link|improve this answer
Yes I did; thank you. The one at the end was ok, but I needed to put the first one before the do. – dragonridingsorceress May 5 '11 at 2:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.