Changeset 5c27b6a for src


Ignore:
Timestamp:
Apr 28, 2024, 7:53:19 PM (2 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
0153dbd, de3a579
Parents:
c5c123f (diff), f632117 (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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    rc5c123f r5c27b6a  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Apr 23 15:39:29 2024
    13 // Update Count     : 6620
     12// Last Modified On : Sat Apr 27 16:23:14 2024
     13// Update Count     : 6625
    1414//
    1515
     
    16981698
    16991699with_statement:
    1700         WITH '(' tuple_expression_list ')' statement
     1700        WITH '(' type_list ')' statement                                        // support scoped enumeration
    17011701                { $$ = new StatementNode( build_with( yylloc, $3, $5 ) ); }
    17021702        ;
     
    33593359        // empty
    33603360                { $$ = nullptr; forall = false; }
    3361         | WITH '(' tuple_expression_list ')' attribute_list_opt
     3361        | WITH '(' type_list ')' attribute_list_opt                     // support scoped enumeration
    33623362                {
    33633363                        $$ = $3; forall = false;
Note: See TracChangeset for help on using the changeset viewer.