Changeset 6d2af204 for src/Parser/parser.yy
- Timestamp:
- Feb 5, 2023, 11:42:15 AM (3 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 8fa77eb
- Parents:
- 9ef5516 (diff), 35d1de5 (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) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r9ef5516 r6d2af204 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jan 30 20:47:27202313 // Update Count : 58 5912 // Last Modified On : Thu Feb 2 21:36:16 2023 13 // Update Count : 5865 14 14 // 15 15 … … 2080 2080 { $$ = DeclarationNode::newTypeQualifier( Type::Atomic ); } 2081 2081 | forall 2082 { $$ = DeclarationNode::newForall( $1 ); } 2082 2083 ; 2083 2084 2084 2085 forall: 2085 2086 FORALL '(' type_parameter_list ')' // CFA 2086 { $$ = DeclarationNode::newForall( $3 ); }2087 { $$ = $3; } 2087 2088 ; 2088 2089 … … 2978 2979 trait_specifier: // CFA 2979 2980 TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' '}' 2980 { $$ = DeclarationNode::newTrait( $2, $4, nullptr ); } 2981 | FORALL '(' type_parameter_list ')' TRAIT identifier_or_type_name '{' '}' // alternate 2982 { $$ = DeclarationNode::newTrait( $6, $3, nullptr ); } 2981 { 2982 SemanticWarning( yylloc, Warning::DeprecTraitSyntax, "" ); 2983 $$ = DeclarationNode::newTrait( $2, $4, nullptr ); 2984 } 2985 | forall TRAIT identifier_or_type_name '{' '}' // alternate 2986 { $$ = DeclarationNode::newTrait( $3, $1, nullptr ); } 2983 2987 | TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' push trait_declaration_list pop '}' 2984 { $$ = DeclarationNode::newTrait( $2, $4, $8 ); } 2985 | FORALL '(' type_parameter_list ')' TRAIT identifier_or_type_name '{' push trait_declaration_list pop '}' // alternate 2986 { $$ = DeclarationNode::newTrait( $6, $3, $9 ); } 2988 { 2989 SemanticWarning( yylloc, Warning::DeprecTraitSyntax, "" ); 2990 $$ = DeclarationNode::newTrait( $2, $4, $8 ); 2991 } 2992 | forall TRAIT identifier_or_type_name '{' push trait_declaration_list pop '}' // alternate 2993 { $$ = DeclarationNode::newTrait( $3, $1, $6 ); } 2987 2994 ; 2988 2995
Note:
See TracChangeset
for help on using the changeset viewer.