Changes in src/Parser/ExpressionNode.hpp [c92bdcc:d1fbc56e]
- File:
-
- 1 edited
-
src/Parser/ExpressionNode.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.hpp
rc92bdcc rd1fbc56e 43 43 ast::Expr * build() { 44 44 ast::Expr * node = expr.release(); 45 node-> set_extension( this->get_extension() );45 node->extension = this->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 ); 85 86 86 87 ast::Expr * build_enum_pos_expr( const CodeLocation &, ast::Expr * expr_node );
Note:
See TracChangeset
for help on using the changeset viewer.