The wikipedia entry for recursive descent parsing judges that pyparsing is not recursive descent. The definition of recursive descent identifies these properties:
- Every nonterminal has a one-to-one mapping to a function that handles the expansion of the production rule for that nonterminal.
- Tokens are read left to right (top down parsing)
- Internally in these functions, it will call other functions to parse sub-expressions & these functions can be right recursive.
I understand that pyparsing uses a more object-oriented design rather than the parser combinator approach. Is this the technicality that disqualifies pyparsing ?
"A+B+C"parses as['A','+','B','+','C']instead of[['A','+','B'],'+','C']– Paul McGuire May 27 '11 at 16:16