Difference between parse tree and syntax tree in tabular form
Answers
Answered by
0
Answer:
A parse tree is a record of the rules (and tokens) used to match some input text whereas a syntax tree records the structure of the input and is insensitive to the grammar that produced it.
That's why Parse Tree is also called Concrete Syntax Tree while the AST is called Syntax Tree .
...
Similar questions