Changeset 59c8dff for src/Parser
- Timestamp:
- Jan 19, 2024, 2:42:58 AM (2 years ago)
- Branches:
- master
- Children:
- f988834
- Parents:
- 8b4faf6
- Location:
- src/Parser
- Files:
-
- 2 edited
-
ExpressionNode.cc (modified) (1 diff)
-
ExpressionNode.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
r8b4faf6 r59c8dff 690 690 } // build_unary_val 691 691 692 ast::Expr * build_enum_pos_expr( const CodeLocation & location, ast::Expr * expr_node ) { 693 // return nullptr 694 return new ast::EnumPosExpr( location, std::move( expr_node ) ); 695 } 696 692 697 ast::Expr * build_binary_val( const CodeLocation & location, 693 698 OperKinds op, -
src/Parser/ExpressionNode.h
r8b4faf6 r59c8dff 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 86 ast::Expr * build_enum_pos_expr( const CodeLocation &, ast::Expr * expr_node );
Note:
See TracChangeset
for help on using the changeset viewer.