Changeset 3a5131ed for src/SymTab
- Timestamp:
- Feb 16, 2017, 3:36:45 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:
- 317450e
- Parents:
- c3d9adc
- Location:
- src/SymTab
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Autogen.cc
rc3d9adc r3a5131ed 10 10 // Created On : Thu Mar 03 15:45:56 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 2 18:04:40 201713 // Update Count : 1 112 // Last Modified On : Thu Feb 16 15:02:50 2017 13 // Update Count : 13 14 14 // 15 15 … … 658 658 659 659 maybeAccept( functionDecl->get_functionType(), *this ); 660 acceptAll( functionDecl->get_oldDecls(), *this );661 660 functionNesting += 1; 662 661 maybeAccept( functionDecl->get_statements(), *this ); … … 752 751 DeclarationWithType * AutogenTupleRoutines::mutate( FunctionDecl *functionDecl ) { 753 752 functionDecl->set_functionType( maybeMutate( functionDecl->get_functionType(), *this ) ); 754 mutateAll( functionDecl->get_oldDecls(), *this );755 753 functionNesting += 1; 756 754 functionDecl->set_statements( maybeMutate( functionDecl->get_statements(), *this ) ); -
src/SymTab/Indexer.cc
rc3d9adc r3a5131ed 10 10 // Created On : Sun May 17 21:37:33 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Jul 12 17:47:47 201613 // Update Count : 1 212 // Last Modified On : Thu Feb 16 14:59:19 2017 13 // Update Count : 13 14 14 // 15 15 … … 236 236 enterScope(); 237 237 maybeAccept( functionDecl->get_functionType(), *this ); 238 acceptAll( functionDecl->get_oldDecls(), *this );239 238 maybeAccept( functionDecl->get_statements(), *this ); 240 239 leaveScope();
Note:
See TracChangeset
for help on using the changeset viewer.