Changes in src/SynTree/Visitor.cc [afc1045:630a82a]
- File:
-
- 1 edited
-
src/SynTree/Visitor.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
rafc1045 r630a82a 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Mar 2 17:29:23 201613 // Update Count : 1 612 // Last Modified On : Fri Apr 1 18:05:13 2016 13 // Update Count : 18 14 14 // 15 15 … … 230 230 } 231 231 232 void Visitor::visit( OffsetPackExpr *offsetPackExpr ) {233 acceptAll( offsetPackExpr->get_results(), *this );234 maybeAccept( offsetPackExpr->get_type(), *this );235 }236 237 232 void Visitor::visit( AttrExpr *attrExpr ) { 238 233 acceptAll( attrExpr->get_results(), *this ); … … 287 282 acceptAll( valofExpr->get_results(), *this ); 288 283 maybeAccept( valofExpr->get_body(), *this ); 284 } 285 286 void Visitor::visit( CompoundLiteralExpr *compLitExpr ) { 287 acceptAll( compLitExpr->get_results(), *this ); 288 maybeAccept( compLitExpr->get_type(), *this ); 289 maybeAccept( compLitExpr->get_initializer(), *this ); 289 290 } 290 291
Note:
See TracChangeset
for help on using the changeset viewer.