Changeset d3a804f5 for src/SynTree/Visitor.cc
- Timestamp:
- Feb 14, 2017, 1:19:28 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 97d246d
- Parents:
- f923b5f (diff), eafb094 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
rf923b5f rd3a804f5 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:24:25 201613 // Update Count : 2 112 // Last Modified On : Thu Feb 9 14:19:22 2017 13 // Update Count : 22 14 14 // 15 15 … … 74 74 } 75 75 76 void Visitor::visit( AsmDecl *asmDecl ) { 77 maybeAccept( asmDecl->get_stmt(), *this ); 78 } 79 80 76 81 void Visitor::visit( CompoundStmt *compoundStmt ) { 77 82 acceptAll( compoundStmt->get_kids(), *this ); … … 148 153 maybeAccept( impCtorDtorStmt->get_callStmt(), *this ); 149 154 } 155 150 156 151 157 void Visitor::visit( ApplicationExpr *applicationExpr ) { … … 338 344 maybeAccept( uniqueExpr->get_expr(), *this ); 339 345 } 346 340 347 341 348 void Visitor::visit( VoidType *voidType ) { … … 422 429 } 423 430 431 424 432 void Visitor::visit( SingleInit *singleInit ) { 425 433 singleInit->get_value()->accept( *this ); … … 437 445 } 438 446 447 439 448 void Visitor::visit( Subrange *subrange ) {} 449 440 450 441 451 void Visitor::visit( Constant *constant ) {}
Note:
See TracChangeset
for help on using the changeset viewer.