| 9 | LineTable::Entry LineTable::dummyEntry_ = {}; |
| 10 | |
| 11 | LineTable::Entry* LineTable::TryLookup(const std::string& file, int line) noexcept |
| 12 | { |
| 13 | try { |
| 14 | return Get_().TryLookup_(file, line); |
| 15 | } |
| 16 | catch (...) { return nullptr; } |
| 17 | } |
| 18 | LineTable::Entry& LineTable::Lookup(const std::string& file, int line) noexcept |
| 19 | { |
| 20 | try { |
nothing calls this directly
no test coverage detected