Changeset e1d66c84
- Timestamp:
- Dec 7, 2022, 4:52:20 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 261e107, 74227c6
- Parents:
- 258aaab8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Parser/parser.yy ¶
r258aaab8 re1d66c84 551 551 552 552 %% 553 // ************************* Namespace Management ********************************553 // ************************ Namespace Management ******************************** 554 554 555 555 // The C grammar is not context free because it relies on the distinct terminal symbols "identifier" and "TYPEDEFname", … … 588 588 ; 589 589 590 // ************************* CONSTANTS ********************************590 // ************************ CONSTANTS ******************************** 591 591 592 592 constant: … … 634 634 ; 635 635 636 // ************************* EXPRESSIONS ********************************636 // ************************ EXPRESSIONS ******************************** 637 637 638 638 primary_expression: … … 1101 1101 ; 1102 1102 1103 // *************************** STATEMENTS *******************************1103 // ************************** STATEMENTS ******************************* 1104 1104 1105 1105 statement: … … 1758 1758 ; 1759 1759 1760 // ******************************* DECLARATIONS *********************************1760 // ****************************** DECLARATIONS ********************************* 1761 1761 1762 1762 declaration_list_opt: // used at beginning of switch statement … … 2991 2991 ; 2992 2992 2993 // ***************************** EXTERNAL DEFINITIONS *****************************2993 // **************************** EXTERNAL DEFINITIONS ***************************** 2994 2994 2995 2995 translation_unit: … … 4013 4013 // declaration lists (not prototype-format parameter type and identifier declarators) is an obsolescent feature. 4014 4014 4015 // ************************* MISCELLANEOUS ********************************4015 // ************************ MISCELLANEOUS ******************************** 4016 4016 4017 4017 comma_opt: // redundant comma -
TabularUnified tests/linking/mangling/header.hfa ¶
r258aaab8 re1d66c84 8 8 extern name_but_a_typedefed_t a_typedefed_global; 9 9 10 extern struct {10 extern struct /* anonymous */ { 11 11 int some_int; 12 12 int some_other_int;
Note: See TracChangeset
for help on using the changeset viewer.