Changeset a073d46 for src/SynTree/Mutator.cc
- Timestamp:
- Feb 9, 2017, 5:31:49 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:
- 132fad4
- Parents:
- 9e45e46 (diff), e994912 (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/Mutator.cc
r9e45e46 ra073d46 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Aug 4 11:23:21 201613 // Update Count : 1912 // Last Modified On : Thu Feb 9 14:22:56 2017 13 // Update Count : 20 14 14 // 15 15 … … 86 86 } 87 87 88 AsmDecl *Mutator::mutate( AsmDecl *asmDecl ) { 89 asmDecl->set_stmt( maybeMutate( asmDecl->get_stmt(), *this ) ); 90 return asmDecl; 91 } 92 93 88 94 CompoundStmt *Mutator::mutate( CompoundStmt *compoundStmt ) { 89 95 mutateAll( compoundStmt->get_kids(), *this ); … … 177 183 return impCtorDtorStmt; 178 184 } 185 179 186 180 187 Expression *Mutator::mutate( ApplicationExpr *applicationExpr ) { … … 433 440 } 434 441 442 435 443 Type *Mutator::mutate( VoidType *voidType ) { 436 444 mutateAll( voidType->get_forall(), *this ); … … 533 541 } 534 542 543 535 544 Initializer *Mutator::mutate( SingleInit *singleInit ) { 536 545 singleInit->set_value( singleInit->get_value()->acceptMutator( *this ) ); … … 551 560 } 552 561 562 553 563 Subrange *Mutator::mutate( Subrange *subrange ) { 554 564 return subrange; 555 565 } 566 556 567 557 568 Constant *Mutator::mutate( Constant *constant ) {
Note:
See TracChangeset
for help on using the changeset viewer.