Changeset e50e9ff for src/SymTab
- Timestamp:
- Aug 22, 2017, 11:42:06 AM (8 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:
- 90c4df0
- Parents:
- 6ac5223 (diff), b3d413b (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. - Location:
- src/SymTab
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Indexer.cc
r6ac5223 re50e9ff 10 10 // Created On : Sun May 17 21:37:33 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Mar 30 16:38:47201713 // Update Count : 1912 // Last Modified On : Thu Aug 17 16:08:40 2017 13 // Update Count : 20 14 14 // 15 15 … … 351 351 acceptAll( compoundStmt->get_kids(), *this ); 352 352 leaveScope(); 353 } 354 355 void Indexer::visit( IfStmt *ifStmt ) { 356 // for statements introduce a level of scope 357 enterScope(); 358 Visitor::visit( ifStmt ); 359 leaveScope(); 353 360 } 354 361 -
src/SymTab/Indexer.h
r6ac5223 re50e9ff 10 10 // Created On : Sun May 17 21:38:55 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jul 22 09:46:34201713 // Update Count : 712 // Last Modified On : Thu Aug 17 16:09:12 2017 13 // Update Count : 8 14 14 // 15 15 … … 45 45 46 46 virtual void visit( CompoundStmt *compoundStmt ); 47 virtual void visit( IfStmt *ifStmt ); 47 48 virtual void visit( ForStmt *forStmt ); 48 49 virtual void visit( CatchStmt *catchStmt );
Note:
See TracChangeset
for help on using the changeset viewer.