Changeset db4ecc5 for src/SynTree/Mutator.cc
- Timestamp:
- Apr 14, 2016, 3:22:42 PM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, stuck-waitfor-destruct, with_gc
- Children:
- 70a06f6
- Parents:
- 7eabc25
- File:
-
- 1 edited
-
src/SynTree/Mutator.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
r7eabc25 rdb4ecc5 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Mon Apr 04 17:14:20201612 // Last Modified On : Fri Apr 08 14:01:47 2016 13 13 // Update Count : 15 14 14 // … … 331 331 } 332 332 333 Expression* Mutator::mutate( ImplicitCopyCtorExpr *impCpCtorExpr ) { 334 impCpCtorExpr->set_callExpr( maybeMutate( impCpCtorExpr->get_callExpr(), *this ) ); 335 mutateAll( impCpCtorExpr->get_copyCtors(), *this ); 336 mutateAll( impCpCtorExpr->get_tempDecls(), *this ); 337 return impCpCtorExpr; 338 } 339 333 340 Expression *Mutator::mutate( UntypedValofExpr *valofExpr ) { 334 341 mutateAll( valofExpr->get_results(), *this );
Note:
See TracChangeset
for help on using the changeset viewer.