- Timestamp:
- Apr 27, 2024, 4:24:20 PM (8 months ago)
- Branches:
- master
- Children:
- f632117
- Parents:
- 55c97e4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r55c97e4 re78966e 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.