Changes in src/SynTree/Visitor.cc [6d49ea3:ea6332d]
- File:
-
- 1 edited
-
src/SynTree/Visitor.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
r6d49ea3 rea6332d 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Thu Aug 17 15:39:38201713 // Update Count : 2 911 // Last Modified By : Andrew Beach 12 // Last Modified On : Mon Jul 24 16:30:00 2017 13 // Update Count : 27 14 14 // 15 15 … … 99 99 100 100 void Visitor::visit( IfStmt *ifStmt ) { 101 acceptAll( ifStmt->get_initialization(), *this );102 101 maybeAccept( ifStmt->get_condition(), *this ); 103 102 maybeAccept( ifStmt->get_thenPart(), *this );
Note:
See TracChangeset
for help on using the changeset viewer.