source: translator/SymTab/Validate.h @ a08ba92

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 a08ba92 was a08ba92, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

licencing: sixth groups of files

  • Property mode set to 100644
File size: 996 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// Validate.h -- This class is intended to perform pre-processing of declarations, validating their correctness and
8//               computing some auxilliary data that is necessary for the indexer.
9//
10// Author           : Richard C. Bilson
11// Created On       : Sun May 17 21:53:34 2015
12// Last Modified By : Peter A. Buhr
13// Last Modified On : Tue May 19 16:49:43 2015
14// Update Count     : 3
15//
16
17#ifndef VALIDATE_H
18#define VALIDATE_H
19
20#include "SynTree/SynTree.h"
21
22namespace SymTab {
23        class Indexer;
24
25        void validate( std::list< Declaration * > &translationUnit, bool doDebug = false );
26        void validateType( Type *type, const Indexer *indexer );
27} // namespace SymTab
28
29#endif // VALIDATE_H
30
31// Local Variables: //
32// tab-width: 4 //
33// mode: c++ //
34// compile-command: "make install" //
35// End: //
Note: See TracBrowser for help on using the repository browser.