| 374 | |
| 375 | #if CLANG_VERSION_MAJOR == 3 && CLANG_VERSION_MINOR < 8 |
| 376 | bool shouldUseDataRecursionFor(clang::Stmt *S) { |
| 377 | // We need to disable this data recursion feature otherwise this break the detection |
| 378 | // of parents (expr_stack). Especially for the CaseStmt |
| 379 | return false; |
| 380 | } |
| 381 | #endif |
| 382 | |
| 383 | bool TraverseDeclarationNameInfo(clang::DeclarationNameInfo NameInfo) { |
nothing calls this directly
no outgoing calls
no test coverage detected