design-patterns-for-parser-combinators
design-patterns-for-parser-combinators copied to clipboard
A Really Cool Calculator written in Haskell... or is it?
Results
2
design-patterns-for-parser-combinators issues
Sort by
recently updated
recently updated
newest added
Although it's often not specified by the grammar, parsers should be careful to consider how whitespace is consumed and different tokens separated lexically. This can get really messy though, and...
pitfall
Parser combinator libraries, like our very own `miniparsec`, are often vulnerable to left-recursion: > **Expressions with left recursion cannot be encoded by recursive descent parsers and will diverge.** Let's suppose...
pitfall