Changes in src/SynTree/Mutator.cc [e994912:907eccb]
- File:
-
- 1 edited
-
src/SynTree/Mutator.cc (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
re994912 r907eccb 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 9 14:22:56 201713 // Update Count : 2012 // Last Modified On : Thu Aug 4 11:23:21 2016 13 // Update Count : 19 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 94 88 CompoundStmt *Mutator::mutate( CompoundStmt *compoundStmt ) { 95 89 mutateAll( compoundStmt->get_kids(), *this ); … … 183 177 return impCtorDtorStmt; 184 178 } 185 186 179 187 180 Expression *Mutator::mutate( ApplicationExpr *applicationExpr ) { … … 440 433 } 441 434 442 443 435 Type *Mutator::mutate( VoidType *voidType ) { 444 436 mutateAll( voidType->get_forall(), *this ); … … 541 533 } 542 534 543 544 535 Initializer *Mutator::mutate( SingleInit *singleInit ) { 545 536 singleInit->set_value( singleInit->get_value()->acceptMutator( *this ) ); … … 560 551 } 561 552 562 563 553 Subrange *Mutator::mutate( Subrange *subrange ) { 564 554 return subrange; 565 555 } 566 567 556 568 557 Constant *Mutator::mutate( Constant *constant ) {
Note:
See TracChangeset
for help on using the changeset viewer.