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 a0d9f94 was 51b73452, checked in by Peter A. Buhr <pabuhr@…>, 11 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 |
|
|---|
| 16 | namespace SymTab {
|
|---|
| 17 |
|
|---|
| 18 | class Indexer;
|
|---|
| 19 |
|
|---|
| 20 | void validate( std::list< Declaration* > &translationUnit, bool doDebug = false,
|
|---|
| 21 | const Indexer *indexer = 0 );
|
|---|
| 22 |
|
|---|
| 23 | void 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.