All of the parsers in Text.Parsec.Token politely use lexeme to eat whitespace after a token. Unfortunately for me, whitespace includes new lines, which I want to use as expression terminators. Is there a way to convince lexeme to leave a new line?

link|improve this question

2  
Have you looked at uu-parsinglib? It has lexeme and non-lexeme versions of parsers, and built-in error correction too. hackage.haskell.org/package/uu-parsinglib – John L Apr 15 '11 at 7:47
2  
I've solved this before by copying and renaming the Parsec.Token module then changing the definition of simpleSpace (near the bottom of the file). This isn't a very modular solution but it does work. – stephen tetley Apr 15 '11 at 8:38
Related to stackoverflow.com/questions/2641737/… – Mechanical snail Oct 15 '11 at 23:33
feedback

2 Answers

If newlines are your expression terminators, maybe it would make sense to split the input at each newline and parsing each line on its own.

link|improve this answer
newlines are potential terminators, but do not necessarily do so. The same semantics as Haskell itself. – John F. Miller Apr 15 '11 at 16:12
@John -- are you trying to handle something similar to layout/the offside rule? There's a whole bunch of techniques for that in particular. – sclv Apr 15 '11 at 18:17
@sclv no, just new lines as expression terminators like one finds in Ruby or JavaScript – John F. Miller Apr 16 '11 at 3:42
+1, since it's a usable workaround for some languages, even though it doesn't work in the asker's case. – Mechanical snail Oct 15 '11 at 22:45
feedback
up vote 2 down vote accepted

No, it is not. Here is the relevant code.

From Text.Parsec.Token:

lexeme p
    = do{ x <- p; whiteSpace; return x  }


--whiteSpace
whiteSpace
    | noLine && noMulti  = skipMany (simpleSpace <?> "")
    | noLine             = skipMany (simpleSpace <|> multiLineComment <?> "")
    | noMulti            = skipMany (simpleSpace <|> oneLineComment <?> "")
    | otherwise          = skipMany (simpleSpace <|> oneLineComment <|> multiLineComment <?> "")
    where
      noLine  = null (commentLine languageDef)
      noMulti = null (commentStart languageDef)

One will notice in the where clause of whitespace that the only only options looked at deal with comments. The lexeme function uses whitespace and it is used liberally in the rest of parsec.token.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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