Ignore:
Timestamp:
Mar 3, 2016, 1:28:56 PM (10 years ago)
Author:
Aaron Moss <a3moss@…>
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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Indexer.cc

    r9d7b3ea r36ebd03  
    99// Author           : Richard C. Bilson
    1010// Created On       : Sun May 17 21:37:33 2015
    11 // Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Aug 05 13:52:42 2015
    13 // Update Count     : 10
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Wed Mar  2 17:31:29 2016
     13// Update Count     : 11
    1414//
    1515
     
    143143        }
    144144
    145         void Indexer::visit( ContextDecl *aggregateDecl ) {
     145        void Indexer::visit( TraitDecl *aggregateDecl ) {
    146146                enterScope();
    147147                acceptAll( aggregateDecl->get_parameters(), *this );
     
    293293
    294294
    295         void Indexer::visit( ContextInstType *contextInst ) {
     295        void Indexer::visit( TraitInstType *contextInst ) {
    296296                acceptAll( contextInst->get_parameters(), *this );
    297297                acceptAll( contextInst->get_members(), *this );
     
    350350        }
    351351
    352         ContextDecl  * Indexer::lookupContext( const std::string &id ) const {
     352        TraitDecl  * Indexer::lookupTrait( const std::string &id ) const {
    353353                return contextTable.lookup( id );
    354354        }
Note: See TracChangeset for help on using the changeset viewer.