| 12 | namespace QodeAssist::PluginLLMCore { |
| 13 | |
| 14 | void PrintTo(const ContextData &data, std::ostream *os) |
| 15 | { |
| 16 | *os << "ContextData{prefix=" |
| 17 | << (data.prefix ? data.prefix->toStdString() : "<nullopt>") |
| 18 | << ", suffix=" << (data.suffix ? data.suffix->toStdString() : "<nullopt>") |
| 19 | << ", fileContext=" << (data.fileContext ? data.fileContext->toStdString() : "<nullopt>") |
| 20 | << "}"; |
| 21 | } |
| 22 | |
| 23 | } // namespace QodeAssist::PluginLLMCore |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected