What is the difference between an "abstract parse tree" and a "parse tree"?

Possible duplicate:
What is the difference between a parsing tree and an AST?

I need to know what is the difference between abstract parsing trees and parsing trees.

+3
source share
1 answer

From wikipedia :

Analysis trees are different from abstract syntax trees (also known as syntax trees), because their structure and elements more specifically reflect the syntax of the input language.

+2
source

All Articles