source: translator/SymTab/Validate.h@ fe3b61b

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since fe3b61b was 3c70d38, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago

make routine static qualifier conditional, remove and reorder hoisted aggregate, format adjustment

  • Property mode set to 100644
File size: 512 bytes
Line 
1// This class is intended to perform pre-processing of declarations, validating their
2// correctness and computing some auxilliary data that is necessary for the indexer.
3
4#ifndef SYMTAB_VALIDATE_H
5#define SYMTAB_VALIDATE_H
6
7#include "SynTree/SynTree.h"
8
9namespace SymTab {
10 class Indexer;
11
12 void validate( std::list< Declaration * > &translationUnit, bool doDebug = false, const Indexer *indexer = 0 );
13 void validateType( Type *type, const Indexer *indexer );
14} // SymTab
15
16#endif // SYMTAB_VALIDATE_H
Note: See TracBrowser for help on using the repository browser.