ROSE  0.11.96.11
Checker.h
1 
2 #ifndef ROSE_AST_Checker_H
3 #define ROSE_AST_Checker_H
4 
5 namespace Rose {
6 namespace AST {
7 
17 namespace Checker {
18 
29 bool all(SgProject * project);
30 
40 bool integrity(SgProject * project);
41 
56 bool integrity_edges(SgProject * project);
57 
67 bool integrity_declarations(SgProject * project);
68 
78 bool integrity_symbols(SgProject * project);
79 
89 bool integrity_types(SgProject * project);
90 
103 bool consistency(SgProject * project);
106 } } }
107 
108 #endif
Rose::AST::Checker::integrity_types
bool integrity_types(SgProject *project)
check all type subgraphs.
Rose::AST::Checker::integrity_symbols
bool integrity_symbols(SgProject *project)
check all symbol subgraphs.
Rose::AST::Checker::all
bool all(SgProject *project)
Apply all existing Checkers.
Rose::AST::Checker::consistency
bool consistency(SgProject *project)
check (potentially complex) rules
Rose::AST::Checker::integrity_declarations
bool integrity_declarations(SgProject *project)
check all declaration subgraphs (1st-nondef / defn)
Rose::AST::Checker::integrity
bool integrity(SgProject *project)
check multiple low-level properties of the AST's graph.
Rose::AST::Checker::integrity_edges
bool integrity_edges(SgProject *project)
for all valid node in the AST's graph check that the target of all edges are valid.
Rose
Main namespace for the ROSE library.
Definition: BinaryTutorial.dox:3
SgProject
This class represents a source project, with a list of SgFile objects and global information about th...
Definition: Cxx_Grammar.h:24060