Examples of a recursive descent analyzer

What are some good examples of recursive descent parsers? Say, from open source projects or particularly good example code.

I especially want to compare implementations with and without return.

Examples are preferred in C, C ++, Java, Javascript, or Python.

I know that there are parser generators that can generate various kinds of parsers. At the moment, I am most interested in learning more about manual recursive descent analyzers.

+4
source share

Source: https://habr.com/ru/post/1541981/


All Articles