Wiki

Clone wiki

inf225 / glossary / Top-down parser

[Alphabetical Index | Tag Index]

Top-down parser

A parser using a strategy where the top-level constructs are recognised first, starting with the start symbol. The parser starts at the root of the parse tree, and builds it top-down, according to the rules of the grammar. Includes LL parsing and Recursive descent parsing.

Updated