Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/CandidateFinder.hpp

    r396037d r99d4584  
    1919#include "ResolvMode.h"
    2020#include "AST/Fwd.hpp"
    21 #include "AST/Node.hpp"
    2221#include "AST/SymbolTable.hpp"
    2322#include "AST/TypeEnvironment.hpp"
     
    3029        const ast::SymbolTable & symtab;         ///< Symbol table to lookup candidates
    3130        const ast::TypeEnvironment & env;        ///< Substitutions performed in this resolution
    32         ast::ptr< ast::Type > targetType = nullptr;  ///< Target type for resolution
     31        const ast::Type * targetType = nullptr;  ///< Target type for resolution
    3332
    3433        CandidateFinder( const ast::SymbolTable & symtab, const ast::TypeEnvironment & env )
     
    3736        /// Fill candidates with feasible resolutions for `expr`
    3837        void find( const ast::Expr * expr, ResolvMode mode = {} );
    39 
    40         /// Runs new candidate finder on each element in xs, returning the list of finders
    41         std::vector< CandidateFinder > findSubExprs( const std::vector< ast::ptr< ast::Expr > > & xs );
    42 
    43         using value_type = CandidateList::value_type;
    44         using iterator = CandidateList::iterator;
    45         using const_iterator = CandidateList::const_iterator;
    46 
    47         iterator begin() { return candidates.begin(); }
    48         const_iterator begin() const { return candidates.begin(); }
    49        
    50         iterator end() { return candidates.end(); }
    51         const_iterator end() const { return candidates.end(); }
    5238};
    5339
Note: See TracChangeset for help on using the changeset viewer.