Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Validate.h

    rb9f8274 r9939dc3  
    1111// Created On       : Sun May 17 21:53:34 2015
    1212// Last Modified By : Andrew Beach
    13 // Last Modified On : Tue Jul 12 15:30:00 2022
    14 // Update Count     : 6
     13// Last Modified On : Tue May 17 14:35:00 2022
     14// Update Count     : 5
    1515//
    1616
     
    1919#include <list>  // for list
    2020
    21 class Declaration;
     21struct CodeLocation;
     22class  Declaration;
     23class  Type;
     24
     25namespace ast {
     26        class Type;
     27        class SymbolTable;
     28}
    2229
    2330namespace SymTab {
     31        class Indexer;
     32
    2433        /// Normalizes struct and function declarations
    2534        void validate( std::list< Declaration * > &translationUnit, bool doDebug = false );
     35
     36        // Sub-passes of validate.
     37        void validate_A( std::list< Declaration * > &translationUnit );
     38        void validate_B( std::list< Declaration * > &translationUnit );
     39        void validate_C( std::list< Declaration * > &translationUnit );
     40        void validate_D( std::list< Declaration * > &translationUnit );
     41        void validate_E( std::list< Declaration * > &translationUnit );
     42        void validate_F( std::list< Declaration * > &translationUnit );
    2643} // namespace SymTab
    2744
Note: See TracChangeset for help on using the changeset viewer.