Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/CandidateFinder.hpp

    r1389810 rb69233ac  
    99// Author           : Aaron B. Moss
    1010// Created On       : Wed Jun 5 14:30:00 2019
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Tue Oct  1  9:51:00 2019
    13 // Update Count     : 2
     11// Last Modified By : Aaron B. Moss
     12// Last Modified On : Wed Jun 5 14:30:00 2019
     13// Update Count     : 1
    1414//
    1515
     
    2828struct CandidateFinder {
    2929        CandidateList candidates;          ///< List of candidate resolutions
    30         const ast::SymbolTable & localSyms;   ///< Symbol table to lookup candidates
     30        const ast::SymbolTable & symtab;   ///< Symbol table to lookup candidates
    3131        const ast::TypeEnvironment & env;  ///< Substitutions performed in this resolution
    3232        ast::ptr< ast::Type > targetType;  ///< Target type for resolution
    33         std::set< std::string > otypeKeys;  /// different type may map to same key
    3433
    35         CandidateFinder(
    36                 const ast::SymbolTable & syms, const ast::TypeEnvironment & env,
     34        CandidateFinder( 
     35                const ast::SymbolTable & symtab, const ast::TypeEnvironment & env,
    3736                const ast::Type * tt = nullptr )
    38         : candidates(), localSyms( syms ), env( env ), targetType( tt ) {}
     37        : candidates(), symtab( symtab ), env( env ), targetType( tt ) {}
    3938
    4039        /// Fill candidates with feasible resolutions for `expr`
    4140        void find( const ast::Expr * expr, ResolvMode mode = {} );
    42         bool pruneCandidates( CandidateList & candidates, CandidateList & out, std::vector<std::string> & errors );
    4341
    4442        /// Runs new candidate finder on each element in xs, returning the list of finders
     
    5149        iterator begin() { return candidates.begin(); }
    5250        const_iterator begin() const { return candidates.begin(); }
    53 
     51       
    5452        iterator end() { return candidates.end(); }
    5553        const_iterator end() const { return candidates.end(); }
     
    5755
    5856/// Computes conversion cost between two types
    59 Cost computeConversionCost(
    60         const ast::Type * argType, const ast::Type * paramType, bool argIsLvalue,
    61         const ast::SymbolTable & symtab, const ast::TypeEnvironment & env );
     57Cost computeConversionCost( 
     58        const ast::Type * argType, const ast::Type * paramType, const ast::SymbolTable & symtab,
     59        const ast::TypeEnvironment & env );
    6260
    6361} // namespace ResolvExpr
Note: See TracChangeset for help on using the changeset viewer.