| 23 | bool RDArgIndex::isNone() const { return !!CB; } |
| 24 | |
| 25 | std::string RDArgIndex::getFunctionName() const { |
| 26 | |
| 27 | if (!CB) |
| 28 | return ""; |
| 29 | |
| 30 | auto *F = CB->getCalledFunction(); |
| 31 | if (!F) |
| 32 | return ""; |
| 33 | |
| 34 | return F->getName().str(); |
| 35 | } |
| 36 | |
| 37 | bool RDArgIndex::operator<(const RDArgIndex &RHS) const { |
| 38 |
nothing calls this directly
no test coverage detected