Changeset c8e4d2f8 for src/SymTab


Ignore:
Timestamp:
Jun 18, 2019, 11:47:44 AM (6 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:
a2a85658, b408364
Parents:
bc92bee
Message:

Start porting CastExpr? resolution

Location:
src/SymTab
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/SymTab/Validate.cc

    rbc92bee rc8e4d2f8  
    13671367                return addrExpr;
    13681368        }
     1369
     1370        const ast::Type * validateType( const ast::Type * type, const ast::SymbolTable & symtab ) {
     1371                #warning unimplemented
     1372                (void)type; (void)symtab;
     1373                assert(false);
     1374                return nullptr;
     1375        }
    13691376} // namespace SymTab
    13701377
  • TabularUnified src/SymTab/Validate.h

    rbc92bee rc8e4d2f8  
    2222class Type;
    2323
     24namespace ast {
     25        class Type;
     26        class SymbolTable;
     27}
     28
    2429namespace SymTab {
    2530        class Indexer;
     
    2833        void validate( std::list< Declaration * > &translationUnit, bool doDebug = false );
    2934        void validateType( Type *type, const Indexer *indexer );
     35
     36        const ast::Type * validateType( const ast::Type * type, const ast::SymbolTable & symtab );
    3037} // namespace SymTab
    3138
Note: See TracChangeset for help on using the changeset viewer.