Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    r8a97248 r7a24d76  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb  2 21:36:16 2023
    13 // Update Count     : 5865
     12// Last Modified On : Tue Jan 31 08:55:11 2023
     13// Update Count     : 5861
    1414//
    1515
     
    29792979trait_specifier:                                                                                // CFA
    29802980        TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' '}'
    2981                 {
    2982                         SemanticWarning( yylloc, Warning::DeprecTraitSyntax, "" );
    2983                         $$ = DeclarationNode::newTrait( $2, $4, nullptr );
    2984                 }
    2985         | forall TRAIT identifier_or_type_name '{' '}'          // alternate
     2981                { $$ = DeclarationNode::newTrait( $2, $4, nullptr ); }
     2982        | forall TRAIT identifier_or_type_name '{' '}' // alternate
    29862983                { $$ = DeclarationNode::newTrait( $3, $1, nullptr ); }
    29872984        | TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' push trait_declaration_list pop '}'
    2988                 {
    2989                         SemanticWarning( yylloc, Warning::DeprecTraitSyntax, "" );
    2990                         $$ = DeclarationNode::newTrait( $2, $4, $8 );
    2991                 }
     2985                { $$ = DeclarationNode::newTrait( $2, $4, $8 ); }
    29922986        | forall TRAIT identifier_or_type_name '{' push trait_declaration_list pop '}' // alternate
    29932987                { $$ = DeclarationNode::newTrait( $3, $1, $6 ); }
Note: See TracChangeset for help on using the changeset viewer.