Changes in src/Parser/ExpressionNode.hpp [d1fbc56e:c92bdcc]
- File:
-
- 1 edited
-
src/Parser/ExpressionNode.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.hpp
rd1fbc56e rc92bdcc 43 43 ast::Expr * build() { 44 44 ast::Expr * node = expr.release(); 45 node-> extension = this->extension;45 node->set_extension( this->get_extension() ); 46 46 node->location = this->location; 47 47 return node; … … 83 83 ast::Expr * build_func( const CodeLocation &, ExpressionNode * function, ExpressionNode * expr_node ); 84 84 ast::Expr * build_compoundLiteral( const CodeLocation &, DeclarationNode * decl_node, InitializerNode * kids ); 85 ast::Expr * build_va_arg( const CodeLocation &, ExpressionNode * function, DeclarationNode * type );86 85 87 86 ast::Expr * build_enum_pos_expr( const CodeLocation &, ast::Expr * expr_node );
Note:
See TracChangeset
for help on using the changeset viewer.