Changeset f4c2f1a for src/SynTree
- Timestamp:
- May 22, 2019, 3:23:25 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 6380f78, 8abee136, dff6452
- Parents:
- e9b44489 (diff), dd6d7c6 (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. - Location:
- src/SynTree
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.h
re9b44489 rf4c2f1a 741 741 virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); } 742 742 virtual void print( std::ostream & os, Indenter indent = {} ) const; 743 744 friend class ConverterNewToOld; 745 private: 746 TupleAssignExpr( StmtExpr * stmts ); 743 747 }; 744 748 -
src/SynTree/TupleExpr.cc
re9b44489 rf4c2f1a 105 105 } 106 106 107 TupleAssignExpr::TupleAssignExpr( 108 StmtExpr * s ) 109 : Expression(), stmtExpr(s) { 110 } 111 112 107 113 TupleAssignExpr::~TupleAssignExpr() { 108 114 delete stmtExpr;
Note: See TracChangeset
for help on using the changeset viewer.