Changeset 75bd041
- Timestamp:
- Apr 1, 2023, 3:57:20 PM (19 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 3c17a10, 678c540
- Parents:
- 3d08cea (diff), f3ba69d (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. - Files:
-
- 32 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r3d08cea r75bd041 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Mar 29 17:56:42202313 // Update Count : 632 512 // Last Modified On : Thu Mar 30 21:28:25 2023 13 // Update Count : 6328 14 14 // 15 15 … … 1651 1651 // Called first: create header for WaitForStmt. 1652 1652 { $$ = build_waitfor( new WaitForStmt(), $1, $2, maybe_build_compound( $3 ) ); } 1653 | wor_waitfor_clause wor when_clause_opt waitfor statement %prec THEN1653 | wor_waitfor_clause wor when_clause_opt waitfor statement 1654 1654 { $$ = build_waitfor( $1, $3, $4, maybe_build_compound( $5 ) ); } 1655 1655 | wor_waitfor_clause wor when_clause_opt ELSE statement … … 1695 1695 wand_waituntil_clause 1696 1696 { printf( "wor_waituntil_clause 1\n" ); $$ = nullptr; } 1697 | wor_waituntil_clause wor w or_waituntil_clause %prec THEN1697 | wor_waituntil_clause wor wand_waituntil_clause 1698 1698 { printf( "wor_waituntil_clause 2\n" ); $$ = nullptr; } 1699 1699 | wor_waituntil_clause wor when_clause_opt ELSE statement
Note: See TracChangeset
for help on using the changeset viewer.