While parsing an ASTVisitor in Clang in sample codes, I see there constructs to verify statements eg.
isa<IfStmt>(statement)
isa<UnaryOperator>(Expression)
Is there a comprehensive list of such constructs which are used to evaluate a current expression/statement.
Thanks