Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/Resolver.h

    r293dc1c r490fb92e  
    3535        class StmtExpr;
    3636        class SymbolTable;
    37         class TranslationUnit;
    3837        class Type;
    3938        class TypeEnvironment;
     
    5655
    5756        /// Checks types and binds syntactic constructs to typed representations
    58         void resolve( ast::TranslationUnit& translationUnit );
     57        void resolve( std::list< ast::ptr<ast::Decl> >& translationUnit );
    5958        /// Searches expr and returns the first DeletedExpr found, otherwise nullptr
    6059        const ast::DeletedExpr * findDeletedExpr( const ast::Expr * expr );
     
    7069                const ast::Expr * untyped, const ast::SymbolTable & symtab);
    7170        /// Resolves a constructor init expression
    72         ast::ptr< ast::Init > resolveCtorInit(
     71        ast::ptr< ast::Init > resolveCtorInit( 
    7372                const ast::ConstructorInit * ctorInit, const ast::SymbolTable & symtab );
    7473        /// Resolves a statement expression
    75         ast::ptr< ast::Expr > resolveStmtExpr(
     74        ast::ptr< ast::Expr > resolveStmtExpr( 
    7675                const ast::StmtExpr * stmtExpr, const ast::SymbolTable & symtab );
    7776} // namespace ResolvExpr
Note: See TracChangeset for help on using the changeset viewer.