Changeset cb98d9d for src/Parser/parser.yy
- Timestamp:
- Apr 8, 2024, 11:57:37 AM (21 months ago)
- Branches:
- master
- Children:
- 485cf59, dd37afa
- Parents:
- d3a49864 (diff), d9bad51 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/Parser/parser.yy (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
rd3a49864 rcb98d9d 2815 2815 { $$ = DeclarationNode::newEnumValueGeneric( $2, $3 ); } 2816 2816 | INLINE type_name 2817 { $$ = DeclarationNode::newEnumInLine( *$2->symbolic.name ); } 2817 { 2818 $$ = DeclarationNode::newEnumInLine( $2->symbolic.name ); 2819 $2->symbolic.name = nullptr; 2820 delete $2; 2821 } 2818 2822 | enumerator_list ',' visible_hide_opt identifier_or_type_name enumerator_value_opt 2819 2823 { $$ = $1->set_last( DeclarationNode::newEnumValueGeneric( $4, $5 ) ); }
Note:
See TracChangeset
for help on using the changeset viewer.