Changeset 36ebd03 for src/SymTab/Indexer.cc
- Timestamp:
- Mar 3, 2016, 1:28:56 PM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 3627356
- Parents:
- 9d7b3ea (diff), 4040425 (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/SymTab/Indexer.cc
r9d7b3ea r36ebd03 9 9 // Author : Richard C. Bilson 10 10 // Created On : Sun May 17 21:37:33 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Wed Aug 05 13:52:42 201513 // Update Count : 1 011 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Mar 2 17:31:29 2016 13 // Update Count : 11 14 14 // 15 15 … … 143 143 } 144 144 145 void Indexer::visit( ContextDecl *aggregateDecl ) {145 void Indexer::visit( TraitDecl *aggregateDecl ) { 146 146 enterScope(); 147 147 acceptAll( aggregateDecl->get_parameters(), *this ); … … 293 293 294 294 295 void Indexer::visit( ContextInstType *contextInst ) {295 void Indexer::visit( TraitInstType *contextInst ) { 296 296 acceptAll( contextInst->get_parameters(), *this ); 297 297 acceptAll( contextInst->get_members(), *this ); … … 350 350 } 351 351 352 ContextDecl * Indexer::lookupContext( const std::string &id ) const {352 TraitDecl * Indexer::lookupTrait( const std::string &id ) const { 353 353 return contextTable.lookup( id ); 354 354 }
Note:
See TracChangeset
for help on using the changeset viewer.