Changeset 5c27b6a for src/Parser/parser.yy
- Timestamp:
- Apr 28, 2024, 7:53:19 PM (7 months ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
rc5c123f r5c27b6a 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Apr 23 15:39:29202413 // Update Count : 662 012 // Last Modified On : Sat Apr 27 16:23:14 2024 13 // Update Count : 6625 14 14 // 15 15 … … 1698 1698 1699 1699 with_statement: 1700 WITH '(' t uple_expression_list ')' statement1700 WITH '(' type_list ')' statement // support scoped enumeration 1701 1701 { $$ = new StatementNode( build_with( yylloc, $3, $5 ) ); } 1702 1702 ; … … 3359 3359 // empty 3360 3360 { $$ = nullptr; forall = false; } 3361 | WITH '(' t uple_expression_list ')' attribute_list_opt3361 | WITH '(' type_list ')' attribute_list_opt // support scoped enumeration 3362 3362 { 3363 3363 $$ = $3; forall = false;
Note: See TracChangeset
for help on using the changeset viewer.