source: translator/SymTab/Validate.h @ 51b7345

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 51b7345 was 51b7345, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

initial commit

  • Property mode set to 100644
File size: 658 bytes
Line 
1/*
2 * This file is part of the Cforall project
3 *
4 * This class is intended to perform pre-processing of declarations, validating their
5 * correctness and computing some auxilliary data that is necessary for the indexer.
6 *
7 * $Id: Validate.h,v 1.7 2005/08/29 20:14:18 rcbilson Exp $
8 *
9 */
10
11#ifndef SYMTAB_VALIDATE_H
12#define SYMTAB_VALIDATE_H
13
14#include "SynTree/SynTree.h"
15
16namespace SymTab {
17
18class Indexer;
19
20void validate( std::list< Declaration* > &translationUnit, bool doDebug = false,
21               const Indexer *indexer = 0 );
22
23void validateType( Type *type, const Indexer *indexer );
24
25} // namespace SymTab
26
27#endif /* #ifndef SYMTAB_VALIDATE_H */
Note: See TracBrowser for help on using the repository browser.