Changes in src/SynTree/Visitor.cc [145f1fc:843054c2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
r145f1fc r843054c2 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 : Tue Jul 14 12:31:03201513 // Update Count : 311 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon May 18 11:14:51 2015 13 // Update Count : 2 14 14 // 15 15 … … 94 94 95 95 void Visitor::visit( ForStmt *forStmt ) { 96 acceptAll( forStmt->get_initialization(), *this ); 96 // ForStmt still needs to be fixed 97 maybeAccept( forStmt->get_initialization(), *this ); 97 98 maybeAccept( forStmt->get_condition(), *this ); 98 99 maybeAccept( forStmt->get_increment(), *this );
Note:
See TracChangeset
for help on using the changeset viewer.