| 900 | BindingDeclFinder() = default; |
| 901 | |
| 902 | void VisitDeclRefExpr(const DeclRefExpr* expr) |
| 903 | { |
| 904 | if(isa<DecompositionDecl>(expr->getDecl())) { |
| 905 | mIsBinding = true; |
| 906 | } |
| 907 | } |
| 908 | |
| 909 | void VisitStmt(const Stmt* stmt) |
| 910 | { |
nothing calls this directly
no outgoing calls
no test coverage detected