Changeset 3c7f01b
- Timestamp:
- Aug 14, 2019, 3:46:35 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 143e6f3, 5c4a473, 5d00425
- Parents:
- a74554af
- Location:
- src/SynTree
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.h
ra74554af r3c7f01b 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Tue Aug 13 11:30:00 201913 // Update Count : 5 212 // Last Modified On : Wed Aug 14 14:24:00 2019 13 // Update Count : 53 14 14 // 15 15 … … 705 705 virtual ~TupleExpr(); 706 706 707 bool get_lvalue() const final; 708 707 709 std::list<Expression*>& get_exprs() { return exprs; } 708 710 -
src/SynTree/TupleExpr.cc
ra74554af r3c7f01b 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Mon Aug 12 14:22:00 201913 // Update Count : 412 // Last Modified On : Wed Aug 14 14:34:00 2019 13 // Update Count : 5 14 14 // 15 15 … … 55 55 TupleExpr::~TupleExpr() { 56 56 deleteAll( exprs ); 57 } 58 59 bool TupleExpr::get_lvalue() const { 60 return result->get_lvalue(); 57 61 } 58 62
Note: See TracChangeset
for help on using the changeset viewer.