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?
|
feedback
|
|
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. | |||||||||
feedback
|
|
No, it is not. Here is the relevant code. From Text.Parsec.Token:
One will notice in the where clause of | |||
|
feedback
|
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