| 34 | } |
| 35 | |
| 36 | const ASTNode *getRValueASTNode(std::string FuncName, unsigned BIdx, |
| 37 | unsigned IIdx, int OIdx) { |
| 38 | auto *ADN = getADN(FuncName, BIdx, IIdx, OIdx); |
| 39 | if (!ADN) |
| 40 | return nullptr; |
| 41 | |
| 42 | return ADN->getAssigned(); |
| 43 | } |
| 44 | |
| 45 | const Expr *findCallExpr(ASTUnit &Unit, std::string CallerName, |
| 46 | std::string CalleeName) const { |
nothing calls this directly
no test coverage detected