| 12345678910111213141516171819202122 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #include "toolchain/diagnostics/mocks.h"
- namespace Carbon {
- void PrintTo(const Diagnostic& diagnostic, std::ostream* os) {
- *os << "Diagnostic{" << diagnostic.kind << ", ";
- PrintTo(diagnostic.level, os);
- *os << ", " << diagnostic.location.file_name << ":"
- << diagnostic.location.line_number << ":"
- << diagnostic.location.column_number << ", \""
- << diagnostic.format_fn(diagnostic) << "\"}";
- }
- void PrintTo(DiagnosticLevel level, std::ostream* os) {
- *os << (level == DiagnosticLevel::Error ? "Error" : "Warning");
- }
- } // namespace Carbon
|