- Timestamp:
 - Jan 31, 2023, 9:12:06 AM (3 years ago)
 - Branches:
 - ADT, ast-experimental, master
 - Children:
 - 03936530, 8a97248
 - Parents:
 - ce691d2
 - File:
 - 
      
- 1 edited
 
- 
          
  src/Parser/parser.yy (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/Parser/parser.yy
rce691d2 r7a24d76 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 : Tue Jan 31 08:55:11 2023 13 // Update Count : 5861 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 … … 2979 2980 TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' '}' 2980 2981 { $$ = DeclarationNode::newTrait( $2, $4, nullptr ); } 2981 | FORALL '(' type_parameter_list ')'TRAIT identifier_or_type_name '{' '}' // alternate2982 { $$ = DeclarationNode::newTrait( $ 6, $3, nullptr ); }2982 | forall TRAIT identifier_or_type_name '{' '}' // alternate 2983 { $$ = DeclarationNode::newTrait( $3, $1, nullptr ); } 2983 2984 | TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' push trait_declaration_list pop '}' 2984 2985 { $$ = DeclarationNode::newTrait( $2, $4, $8 ); } 2985 | FORALL '(' type_parameter_list ')'TRAIT identifier_or_type_name '{' push trait_declaration_list pop '}' // alternate2986 { $$ = DeclarationNode::newTrait( $ 6, $3, $9); }2986 | forall TRAIT identifier_or_type_name '{' push trait_declaration_list pop '}' // alternate 2987 { $$ = DeclarationNode::newTrait( $3, $1, $6 ); } 2987 2988 ; 2988 2989  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.