Changeset ad47ec4 for src/Parser/ExpressionNode.hpp
- Timestamp:
- Aug 29, 2024, 2:38:39 PM (14 months ago)
- Branches:
- master
- Children:
- 9bb6c5f
- Parents:
- 960665c (diff), b965774 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/Parser/ExpressionNode.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.hpp
r960665c rad47ec4 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.