Changes in src/SynTree/Mutator.cc [2a4b088:d3b7937]
- File:
-
- 1 edited
-
src/SynTree/Mutator.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
r2a4b088 rd3b7937 261 261 } 262 262 263 Expression *Mutator::mutate( UntypedOffsetofExpr *offsetofExpr ) {264 mutateAll( offsetofExpr->get_results(), *this );265 offsetofExpr->set_type( maybeMutate( offsetofExpr->get_type(), *this ) );266 return offsetofExpr;267 }268 269 Expression *Mutator::mutate( OffsetofExpr *offsetofExpr ) {270 mutateAll( offsetofExpr->get_results(), *this );271 offsetofExpr->set_type( maybeMutate( offsetofExpr->get_type(), *this ) );272 offsetofExpr->set_member( maybeMutate( offsetofExpr->get_member(), *this ) );273 return offsetofExpr;274 }275 276 263 Expression *Mutator::mutate( AttrExpr *attrExpr ) { 277 264 mutateAll( attrExpr->get_results(), *this );
Note:
See TracChangeset
for help on using the changeset viewer.