| 104 | void traceMissedProbes(Optional<ExecutionContext> context) const; |
| 105 | |
| 106 | void add(ICodeProbe const* probe) { |
| 107 | Location loc(probe->filename(), probe->line()); |
| 108 | codeProbes.emplace(loc, probe); |
| 109 | } |
| 110 | |
| 111 | static CodeProbes& instance() { |
| 112 | static CodeProbes probes; |
no test coverage detected