recursive descent parser

A recursive descent parser is a type of top-down parser based on the principles of recursive function calls, where the parser follows the grammar rules by recursively calling parsing functions for each non-terminal symbol until a terminal symbol or parsing error is reached.

Requires login.