Jump to content

S-attributed grammar: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
better way of linking s-attributed to l-attributed
Line 1: Line 1:
'''S-attributed grammars''' are a class of [[attribute grammar]]s, comparable with [[L-attributed grammar]]s but characterized by having no inherited attributes at all. Inherited attributes, which must be passed down from parent nodes to children nodes of the [[abstract syntax tree]] during the [[Semantic analysis (computer science)|semantic analysis]] of the [[parsing]] process, are a problem for [[bottom-up parsing]] because in bottom-up parsing, the parent nodes of the abstract syntax tree are created ''after'' creation of all of their children. Attribute evaluation in S-attributed grammars can be incorporated conveniently in both [[top-down parsing]] and [[bottom-up parsing]]. yacc is based on the S-attributed approach.
'''S-attributed grammars''' are a class of [[attribute grammar]]s characterized by having no inherited attributes. Inherited attributes, which must be passed down from parent nodes to children nodes of the [[abstract syntax tree]] during the [[Semantic analysis (computer science)|semantic analysis]] of the [[parsing]] process, are a problem for [[bottom-up parsing]] because in bottom-up parsing, the parent nodes of the abstract syntax tree are created ''after'' creation of all of their children. Attribute evaluation in S-attributed grammars can be incorporated conveniently in both [[top-down parsing]] and [[bottom-up parsing]]. yacc is based on the S-attributed approach.


Any S-attributed grammar is also an [[L-attributed grammar]]
[[Category:Formal languages]]
[[Category:Formal languages]]

Revision as of 00:03, 11 January 2008

S-attributed grammars are a class of attribute grammars characterized by having no inherited attributes. Inherited attributes, which must be passed down from parent nodes to children nodes of the abstract syntax tree during the semantic analysis of the parsing process, are a problem for bottom-up parsing because in bottom-up parsing, the parent nodes of the abstract syntax tree are created after creation of all of their children. Attribute evaluation in S-attributed grammars can be incorporated conveniently in both top-down parsing and bottom-up parsing. yacc is based on the S-attributed approach.

Any S-attributed grammar is also an L-attributed grammar