[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.5 Defining Language Semantics
The grammar rules for a language determine only the syntax. The semantics are determined by the semantic values associated with various tokens and groupings, and by the actions taken when various groupings are recognized.
For example, the calculator calculates properly because the value associated with each expression is the proper number; it adds properly because the action for the grouping ‘x + y’ is to add the numbers associated with x and y.
3.5.1 Data Types of Semantic Values | Specifying one data type for all semantic values. | |
3.5.2 More Than One Value Type | Specifying several alternative data types. | |
3.5.3 Actions | An action is the semantic definition of a grammar rule. | |
3.5.4 Data Types of Values in Actions | Specifying data types for actions to operate on. | |
3.5.5 Actions in Mid-Rule | Most actions go at the end of a rule. This says when, why and how to use the exceptional action in the middle of a rule. |