Changes in src/Parser/ParseNode.h [ca78437:d7dc824]
- File:
-
- 1 edited
-
src/Parser/ParseNode.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
rca78437 rd7dc824 9 9 // Author : Rodolfo G. Esteves 10 10 // Created On : Sat May 16 13:28:16 2015 11 // Last Modified By : Andrew Beach12 // Last Modified On : Mon Jun 12 13:00:00201713 // Update Count : 77 911 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Mar 17 15:42:18 2017 13 // Update Count : 777 14 14 // 15 15 … … 393 393 Statement * build_return( ExpressionNode * ctl ); 394 394 Statement * build_throw( ExpressionNode * ctl ); 395 Statement * build_resume( ExpressionNode * ctl );396 Statement * build_resume_at( ExpressionNode * ctl , ExpressionNode * target );397 395 Statement * build_try( StatementNode * try_stmt, StatementNode * catch_stmt, StatementNode * finally_stmt ); 398 Statement * build_catch( CatchStmt::Kind kind, DeclarationNode *decl, ExpressionNode *cond, StatementNode *body);396 Statement * build_catch( DeclarationNode * decl, StatementNode * stmt, bool catchAny = false ); 399 397 Statement * build_finally( StatementNode * stmt ); 400 398 Statement * build_compound( StatementNode * first );
Note:
See TracChangeset
for help on using the changeset viewer.