Crafting an interpreter Part 3 - Parse Trees and Syntax Trees - CodeProject
Parse Trees and Syntax Trees A parse tree uses one physical tree node per nonterminal, what usually results in huge trees. A syntax tree, often called abstract syntax tree or abbreviated AST is a parse tree where most nonterminals have been removed. The ....