| 20 | } |
| 21 | |
| 22 | void DiagnosticBuilder::PushDiagnostic(DiagnosticType type, |
| 23 | std::size_t leftIndex, |
| 24 | TextRange range, |
| 25 | std::string_view message, |
| 26 | std::string_view data) { |
| 27 | _nextDiagnosticMap[leftIndex] = LuaDiagnostic(type, range, message, data); |
| 28 | } |
| 29 | |
| 30 | void DiagnosticBuilder::PushDiagnostic(DiagnosticType type, TextRange range, std::string_view message, |
| 31 | std::string_view data) { |
no test coverage detected