Changeset 6054b18 for src/Parser
- Timestamp:
- May 29, 2019, 9:09:30 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 466fa01
- Parents:
- c786e1d (diff), d88f8b3b (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
rc786e1d r6054b18 1358 1358 1359 1359 handler_clause: 1360 handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement pop1360 handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement 1361 1361 { $$ = new StatementNode( build_catch( $1, $4, $6, $8 ) ); } 1362 | handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement pop1362 | handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement 1363 1363 { $$ = (StatementNode *)$1->set_last( new StatementNode( build_catch( $2, $5, $7, $9 ) ) ); } 1364 1364 ;
Note: See TracChangeset
for help on using the changeset viewer.