Changes in src/SynTree/Mutator.cc [907eccb:e994912]
- File:
-
- 1 edited
-
src/SynTree/Mutator.cc (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
r907eccb re994912 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.