Changes in src/Parser/ParseNode.h [ca78437:b3c36f4]
- File:
-
- 1 edited
-
src/Parser/ParseNode.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
rca78437 rb3c36f4 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 … … 166 166 Expression * build_field_name_REALDECIMALconstant( const std::string & str ); 167 167 168 NameExpr * build_varref( const std::string * name );168 NameExpr * build_varref( const std::string * name, bool labelp = false ); 169 169 Expression * build_typevalue( DeclarationNode * decl ); 170 170 … … 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.