What is the relation between parser combinators and recursive descent parsers?
views:
165answers:
1
+1
A:
The Wikipedia link on parser combinators is actually pretty reasonable. From it one of the first things we learn is that "Parser combinators use a top-down parsing strategy", i.e. recursive descent.
Combinators themselves are building blocks for parsers, but they lean toward recursive descent.
Don Wakefield
2009-05-30 15:48:14