Ignore:
Timestamp:
Jun 11, 2019, 3:42:10 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
432ce7a
Parents:
3da7c19
Message:

Fill in CandidateFinder? boilerplate in resolver port

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/Resolver.h

    r3da7c19 r4b7cce6  
    1717
    1818#include <list>          // for list
    19 #include <AST/Node.hpp>  // for ptr
     19
     20#include "AST/Node.hpp"  // for ptr
    2021
    2122class ConstructorInit;
     
    3031        class Decl;
    3132        class DeletedExpr;
     33        class SymbolTable;
     34        class TypeEnvironment;
    3235} // namespace ast
    3336
     
    5154        /// Searches expr and returns the first DeletedExpr found, otherwise nullptr
    5255        const ast::DeletedExpr * findDeletedExpr( const ast::Expr * expr );
     56        /// Find the expression candidate that is the unique best match for `untyped` in a `void`
     57        /// context.
     58        ast::ptr< ast::Expr > resolveInVoidContext(
     59                const ast::Expr * expr, const ast::SymbolTable & symtab, ast::TypeEnvironment & env );
    5360} // namespace ResolvExpr
    5461
Note: See TracChangeset for help on using the changeset viewer.