Changeset 849720f for src/SynTree/TupleExpr.cc
- Timestamp:
- Sep 23, 2019, 4:59:33 PM (4 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 4a60488, b4f8808
- Parents:
- abec2f8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/TupleExpr.cc
rabec2f8 r849720f 58 58 59 59 bool TupleExpr::get_lvalue() const { 60 return result->get_lvalue();60 return false; 61 61 } 62 62 … … 83 83 84 84 bool TupleIndexExpr::get_lvalue() const { 85 assert( result->get_lvalue() ); 86 return true; 85 return tuple->get_lvalue(); 87 86 } 88 87
Note: See TracChangeset
for help on using the changeset viewer.