Skip to content

FindLoopStmtVisitor

#include <Visitors.h>

Inherits from clang::RecursiveASTVisitor< FindLoopStmtVisitor >

Public Functions

Name
FindLoopStmtVisitor()
bool VisitStmt(clang::Stmt * S)
Visit function for statements.
std::unordered_set< clang::VarDecl * > * getVarSet()

Private Attributes

Name
FindDeclRefExprVisitor FindDeclRefVisitor

Public Functions Documentation

function FindLoopStmtVisitor

1
inline FindLoopStmtVisitor()

function VisitStmt

1
2
3
bool VisitStmt(
    clang::Stmt * S
)

Visit function for statements.

Parameters:

  • S Given statement

Statement Visitor for the FindLoopStmtVisitor

function getVarSet

1
inline std::unordered_set< clang::VarDecl * > * getVarSet()

Private Attributes Documentation

variable FindDeclRefVisitor

1
FindDeclRefExprVisitor FindDeclRefVisitor;

Last update: 2021-11-24
Back to top