up vote 2 down vote favorite
1
share [g+] share [fb]

What is the relation between parser combinators and recursive descent parsers?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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.

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.