| 174 | } |
| 175 | |
| 176 | bool Annotator::shouldProcess(clang::FileID FID) |
| 177 | { |
| 178 | auto it = cache.find(FID); |
| 179 | if (it == cache.end()) { |
| 180 | htmlNameForFile(FID); |
| 181 | it = cache.find(FID); |
| 182 | assert(it != cache.end()); |
| 183 | } |
| 184 | return it->second.first; |
| 185 | } |
| 186 | |
| 187 | |
| 188 | std::string Annotator::htmlNameForFile(clang::FileID id) |
no outgoing calls
no test coverage detected