Changeset d1b9d78 for src/SynTree/Visitor.cc
- Timestamp:
- Jul 13, 2016, 1:44:00 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 9c791dd
- Parents:
- 8884112 (diff), ed9ecda (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
r8884112 rd1b9d78 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Wed Apr 27 17:07:40201613 // Update Count : 1 811 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 12 17:54:39 2016 13 // Update Count : 19 14 14 // 15 15 … … 112 112 } 113 113 114 void Visitor::visit( ChooseStmt *switchStmt ) {115 maybeAccept( switchStmt->get_condition(), *this );116 acceptAll( switchStmt->get_branches(), *this );117 }118 119 void Visitor::visit( FallthruStmt *fallthruStmt ) {}120 121 114 void Visitor::visit( CaseStmt *caseStmt ) { 122 115 maybeAccept( caseStmt->get_condition(), *this );
Note:
See TracChangeset
for help on using the changeset viewer.