Changeset 2162c2c for src/SynTree/Visitor.cc
- Timestamp:
- Jan 11, 2017, 4:11:02 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 075734f
- Parents:
- bb82c03 (diff), d3a85240 (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
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
rbb82c03 r2162c2c 273 273 274 274 void Visitor::visit( ImplicitCopyCtorExpr *impCpCtorExpr ) { 275 maybeAccept( impCpCtorExpr->get_result(), *this ); 275 276 maybeAccept( impCpCtorExpr->get_callExpr(), *this ); 276 277 acceptAll( impCpCtorExpr->get_tempDecls(), *this ); … … 298 299 maybeAccept( rangeExpr->get_low(), *this ); 299 300 maybeAccept( rangeExpr->get_high(), *this ); 301 } 302 303 void Visitor::visit( UntypedTupleExpr *tupleExpr ) { 304 maybeAccept( tupleExpr->get_result(), *this ); 305 acceptAll( tupleExpr->get_exprs(), *this ); 300 306 } 301 307
Note:
See TracChangeset
for help on using the changeset viewer.