Search Dictionary
Abstract syntax tree Definition from Language, Idioms & Slang Dictionaries & Glossaries
abstract syntax tree
(ast) a data structure representing something which has been parsed, often used as a compiler or interpreter's internal representation of a program while it is being optimised and from which code generation is performed. the range of all possible such structures is described by the abstract syntax.
Abstract syntax tree Definition from Encyclopedia Dictionaries & Glossaries
[File:Abstract syntax tree for Euclidean algorithm.svg|thumb|400px|An abstract syntax tree for the following code for the Euclidean algorithm:
- while b ≠ 0
- if a > b
- a := a − b
- else
- b := b − a
- if a > b
- return a
| See more at Wikipedia.org... |
