| 67 | {} |
| 68 | |
| 69 | std::string CTU::FileInfo::toString() const |
| 70 | { |
| 71 | std::ostringstream out; |
| 72 | |
| 73 | // Function calls.. |
| 74 | for (const CTU::FileInfo::FunctionCall &functionCall : functionCalls) { |
| 75 | out << functionCall.toXmlString(); |
| 76 | } |
| 77 | |
| 78 | // Nested calls.. |
| 79 | for (const CTU::FileInfo::NestedCall &nestedCall : nestedCalls) { |
| 80 | out << nestedCall.toXmlString() << "\n"; |
| 81 | } |
| 82 | |
| 83 | return out.str(); |
| 84 | } |
| 85 | |
| 86 | std::string CTU::FileInfo::CallBase::toBaseXmlString() const |
| 87 | { |
no test coverage detected