Changes in src/SynTree/Visitor.cc [e994912:907eccb]
- File:
-
- 1 edited
-
src/SynTree/Visitor.cc (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.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:19:22 201713 // Update Count : 2 212 // Last Modified On : Thu Aug 4 11:24:25 2016 13 // Update Count : 21 14 14 // 15 15 … … 74 74 } 75 75 76 void Visitor::visit( AsmDecl *asmDecl ) {77 maybeAccept( asmDecl->get_stmt(), *this );78 }79 80 81 76 void Visitor::visit( CompoundStmt *compoundStmt ) { 82 77 acceptAll( compoundStmt->get_kids(), *this ); … … 153 148 maybeAccept( impCtorDtorStmt->get_callStmt(), *this ); 154 149 } 155 156 150 157 151 void Visitor::visit( ApplicationExpr *applicationExpr ) { … … 344 338 maybeAccept( uniqueExpr->get_expr(), *this ); 345 339 } 346 347 340 348 341 void Visitor::visit( VoidType *voidType ) { … … 429 422 } 430 423 431 432 424 void Visitor::visit( SingleInit *singleInit ) { 433 425 singleInit->get_value()->accept( *this ); … … 445 437 } 446 438 447 448 439 void Visitor::visit( Subrange *subrange ) {} 449 450 440 451 441 void Visitor::visit( Constant *constant ) {}
Note:
See TracChangeset
for help on using the changeset viewer.