Changeset 70056ed
- Timestamp:
- Mar 30, 2023, 9:47:58 PM (20 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- eb47a80
- Parents:
- ff443e5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
rff443e5 r70056ed 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.