Abstract syntax: Difference between revisions
imported>Citation bot Removed proxy/dead URL that duplicated identifier. | Use this bot. Report bugs. | Suggested by Abductive | Category:Parsing | #UCB_Category 30/31 |
imported>Kvng destub |
||
| Line 1: | Line 1: | ||
{{More citations needed|date=November 2023}} | {{More citations needed|date=November 2023}} | ||
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.<ref>{{Cite book | 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.<ref>{{Cite book |date=1999 |doi=10.1109/LICS.1999.782615 |s2cid=7384052 |language=en-US |last1=Fiore |first1=M. |author2link = Gordon Plotkin|last2=Plotkin |first2=G. |last3=Turi |first3=D. |title=Proceedings. 14th [[Symposium on Logic in Computer Science]] (Cat. No. PR00158) |chapter=Abstract syntax and variable binding |pages=193–202 |isbn=0-7695-0158-3 }}</ref> This is particularly used in the representation of text in [[computer language]]s,<ref>{{cite book | chapter-url=https://dl.acm.org/doi/abs/10.5555/1267950.1267968 | chapter=ASTLOG: A language for examining abstract syntax trees |title=DSL'97: Proceedings of the Conference on Domain-Specific Languages on Conference on Domain-Specific Languages (DSL), 1997 |publisher= USENIX Association | date=15 October 1997 | page=18 }}</ref> 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. 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. | ||
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 (programming languages)|name resolution]]), and ''[[higher-order abstract syntax]],'' if the names themselves are abstract.<ref>{{Cite journal |last1=Pfenning |first1=F. |author1link = Frank Pfenning|last2=Elliott |first2=C. |date=1988-06-01 |title=Higher-order abstract syntax |journal=[[ACM SIGPLAN Notices]] |volume=23 |issue=7 |pages=199–208 |doi=10.1145/960116.54010 |issn=0362-1340|doi-access=free }}</ref> | 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 (programming languages)|name resolution]]), and ''[[higher-order abstract syntax]],'' if the names themselves are abstract.<ref>{{Cite journal |last1=Pfenning |first1=F. |author1link = Frank Pfenning|last2=Elliott |first2=C. |date=1988-06-01 |title=Higher-order abstract syntax |journal=[[ACM SIGPLAN Notices]] |volume=23 |issue=7 |pages=199–208 |doi=10.1145/960116.54010 |issn=0362-1340|doi-access=free }}</ref> | ||
| Line 8: | Line 8: | ||
To be implemented either for computation or communications, a mapping from the abstract syntax to specific machine representations and encodings must be defined; these may be called the "[[concrete syntax]]" (in language implementation)<ref>{{Cite book |last=Wile |first=David S. |title=Proceedings of the 19th international conference on Software engineering - ICSE '97 |chapter=Abstract syntax from concrete syntax |date=1997 |chapter-url=http://portal.acm.org/citation.cfm?doid=253228.253388 |language=en |publisher=ACM Press |pages=472–480 |doi=10.1145/253228.253388 |isbn=978-0-89791-914-2|s2cid=14351497 }}</ref> or the "transfer syntax" (in communications). | To be implemented either for computation or communications, a mapping from the abstract syntax to specific machine representations and encodings must be defined; these may be called the "[[concrete syntax]]" (in language implementation)<ref>{{Cite book |last=Wile |first=David S. |title=Proceedings of the 19th international conference on Software engineering - ICSE '97 |chapter=Abstract syntax from concrete syntax |date=1997 |chapter-url=http://portal.acm.org/citation.cfm?doid=253228.253388 |language=en |publisher=ACM Press |pages=472–480 |doi=10.1145/253228.253388 |isbn=978-0-89791-914-2|s2cid=14351497 }}</ref> or the "transfer syntax" (in communications). | ||
A [[compiler]]'s internal representation of a program will typically be specified by an abstract syntax in terms of categories such as "statement", "expression" and "identifier". This is independent of the source syntax ('''concrete syntax''') of the language being compiled (though it will often be very similar). A [[parse tree]] is similar to an [[abstract syntax tree]] but it will typically also contain features such as parentheses, which are syntactically significant but which are implicit in the structure of the abstract syntax tree. | A [[compiler]]'s internal representation of a program will typically be specified by an abstract syntax in terms of categories such as "statement", "expression" and "identifier". This is independent of the source syntax ('''concrete syntax''') of the language being compiled (though it will often be very similar). A [[parse tree]] is similar to an [[abstract syntax tree]] but it will typically also contain features such as parentheses, which are syntactically significant but which are implicit in the structure of the abstract syntax tree.<ref name="foldoc">{{foldoc|Abstract+syntax}}</ref> | ||
[[Algebraic data type]]s are particularly well-suited to the implementation of abstract syntax.<ref>{{Cite journal |last1=Corradini |first1=Andrea |last2=Gadducci |first2=Fabio |title=A functorial semantics for multi-algebras and partial algebras, with applications to syntax |journal=Theoretical Computer Science |date=2002-09-17 |volume=286 |issue=2 |pages=293–322 |doi=10.1016/S0304-3975(01)00319-X |issn=0304-3975|doi-access=free }}</ref> | [[Algebraic data type]]s are particularly well-suited to the implementation of abstract syntax.<ref>{{Cite journal |last1=Corradini |first1=Andrea |last2=Gadducci |first2=Fabio |title=A functorial semantics for multi-algebras and partial algebras, with applications to syntax |journal=Theoretical Computer Science |date=2002-09-17 |volume=286 |issue=2 |pages=293–322 |doi=10.1016/S0304-3975(01)00319-X |issn=0304-3975|doi-access=free }}</ref> | ||
| Line 24: | Line 24: | ||
[[Category:Syntax]] | [[Category:Syntax]] | ||
[[Category:Parsing]] | [[Category:Parsing]] | ||
Latest revision as of 13:46, 22 September 2025
Template:More citations needed
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.[1] This is particularly used in the representation of text in computer languages,[2] 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. 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.
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.[3]
Uses
To be implemented either for computation or communications, a mapping from the abstract syntax to specific machine representations and encodings must be defined; these may be called the "concrete syntax" (in language implementation)[4] or the "transfer syntax" (in communications).
A compiler's internal representation of a program will typically be specified by an abstract syntax in terms of categories such as "statement", "expression" and "identifier". This is independent of the source syntax (concrete syntax) of the language being compiled (though it will often be very similar). A parse tree is similar to an abstract syntax tree but it will typically also contain features such as parentheses, which are syntactically significant but which are implicit in the structure of the abstract syntax tree.[5]
Algebraic data types are particularly well-suited to the implementation of abstract syntax.[6]