Changeset f8b69da7 for src/Parser
- Timestamp:
- Aug 29, 2018, 3:23:55 PM (7 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- a715b5c
- Parents:
- a42a654 (diff), 546b51e (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
ra42a654 rf8b69da7 1310 1310 1311 1311 handler_clause: 1312 handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement pop1312 handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement 1313 1313 { $$ = new StatementNode( build_catch( $1, $4, $6, $8 ) ); } 1314 | handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement pop1314 | handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement 1315 1315 { $$ = (StatementNode *)$1->set_last( new StatementNode( build_catch( $2, $5, $7, $9 ) ) ); } 1316 1316 ;
Note:
See TracChangeset
for help on using the changeset viewer.