Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/SymbolTable.cpp

    r85855b0 rc92bdcc  
    159159}
    160160
    161 std::vector<SymbolTable::IdData> SymbolTable::lookupIdIgnoreHidden( const std::string &id ) const {
    162         std::vector<IdData> out;
    163         std::vector<IdData> lookupResult = lookupId(id);
    164         for ( auto candidate: lookupResult) {
    165                 if ( candidate.id ) {
    166                         if (candidate.id->isHidden) continue;
    167                 }
    168                 out.push_back(candidate);
    169         }
    170         return out;
    171 }
    172 
    173161std::vector<SymbolTable::IdData> SymbolTable::specialLookupId( SymbolTable::SpecialFunctionKind kind, const std::string & otypeKey ) const {
    174162        static Stats::Counters::CounterGroup * special_stats = Stats::Counters::build<Stats::Counters::CounterGroup>("Special Lookups");
Note: See TracChangeset for help on using the changeset viewer.