Changes in src/Parser/parser.yy [cc22003:098f7ff]
- File:
-
- 1 edited
-
src/Parser/parser.yy (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
rcc22003 r098f7ff 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.