Changeset dc2e7e0 for src/SynTree
- Timestamp:
- Apr 22, 2016, 10:33:19 AM (9 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, with_gc
- Children:
- fbfb38e
- Parents:
- b617e4b
- Location:
- src/SynTree
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.cc
rb617e4b rdc2e7e0 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Thu Apr 14 15:33:12201612 // Last Modified On : Mon Apr 18 17:25:06 2016 13 13 // Update Count : 40 14 14 // … … 486 486 os << std::endl << std::string( indent, ' ' ) << "with copyCtors:" << std::endl; 487 487 printAll(copyCtors, os, indent+2); 488 os << std::endl << std::string( indent, ' ' ) << "with return temporaries:" << std::endl; 489 printAll(returnDecls, os, indent+2); 488 490 Expression::print( os, indent ); 489 491 } -
src/SynTree/Mutator.cc
rb617e4b rdc2e7e0 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Thu Apr 14 15:32:19201612 // Last Modified On : Mon Apr 18 17:29:55 2016 13 13 // Update Count : 16 14 14 // … … 341 341 mutateAll( impCpCtorExpr->get_copyCtors(), *this ); 342 342 mutateAll( impCpCtorExpr->get_tempDecls(), *this ); 343 mutateAll( impCpCtorExpr->get_returnDecls(), *this ); 343 344 return impCpCtorExpr; 344 345 } -
src/SynTree/Visitor.cc
rb617e4b rdc2e7e0 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Thu Apr 14 15:31:18201612 // Last Modified On : Mon Apr 18 17:30:10 2016 13 13 // Update Count : 18 14 14 // … … 288 288 acceptAll( impCpCtorExpr->get_copyCtors(), *this ); 289 289 acceptAll( impCpCtorExpr->get_tempDecls(), *this ); 290 acceptAll( impCpCtorExpr->get_returnDecls(), *this ); 290 291 } 291 292
Note:
See TracChangeset
for help on using the changeset viewer.