Is it generated by difference phase of a compiling process? Or just difference names for the thing?
|
|
This is based on the Expression Evaluator grammar by Terrence Parr. The grammar for this example:
Input
Parse Tree The parse tree is a concrete representation of the input. The parse tree retains all of the information of the input. The empty boxes represent whitespace, i.e. end of line.
AST The AST is an abstract representation of the input. Notice that parens are not present in the AST because the associations are derivable from the tree structure.
EDIT For a more through explanation see Compilers and Compiler Generators pg. 23 |
||||
|
|
|
The DSL book from Martin Fowler explains this nicely. The AST only contains all 'useful' elements that will be used for further processing, while the parse tree contains all the artifacts (spaces, brackets, ...) from the original document you parse |
|||
|
|
|
From what I understand, the AST focuses more on the abstract relationships between the components of source code, while the parse tree focuses on the actual implementation of the grammer utilized by the language, including the nitpicky details. They are definitely not the same, since another term for "parse tree" is "concrete syntax tree". I found this page which attempts to resolve this exact question. |
|||
|
|

