Difference between revisions of "Abstract syntax"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
 
Line 25: Line 25:
  
 
* [https://en.wikipedia.org/wiki/Abstract_syntax Abstract syntax] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Abstract_syntax Abstract syntax] @ Wikipedia
 +
 +
[[Category:Mathematics]]

Latest revision as of 07:59, 17 March 2016

In computer science, the abstract syntax of data is its structure described as a data type (possibly, but not necessarily, an abstract data type), independent of any particular representation or encoding.

Description

This is particularly used in the representation of text in programming languages, which are generally stored in a tree structure as an abstract syntax tree.

Abstract syntax, which only consists of the structure of data, is contrasted with concrete syntax, which also includes information about the representation.

Example

For example, concrete syntax includes features like parentheses (for grouping) or commas (for lists) which are not included in the abstract syntax, as they are implicit in the structure.

Classification

Abstract syntaxes are classified as first-order abstract syntax (FOAS), if the structure is abstract but names (identifiers) are still concrete (and thus requires name resolution), and higher-order abstract syntax, if the names themselves are abstract.

See also

External links