Files
carbon-lang/toolchain/diagnostics/null_diagnostics.h
T
Chandler Carruth 8f8ab23a77 Move the toolchain into a top-level directory. (#567)
This should clean up our top level directory and the build patterns.

No non-mechanical edits here. Just injecting `toolchain/` and
`TOOLCHAIN_` and then running formatting tools.
2021-06-08 03:01:37 -07:00

40 lines
1.3 KiB
C++

// 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
#ifndef TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_
#define TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_
#include "toolchain/diagnostics/diagnostic_emitter.h"
namespace Carbon {
template <typename LocationT>
inline auto NullDiagnosticLocationTranslator()
-> DiagnosticLocationTranslator<LocationT>& {
struct Translator : DiagnosticLocationTranslator<LocationT> {
auto GetLocation(LocationT) -> Diagnostic::Location override { return {}; }
};
static Translator* translator = new Translator;
return *translator;
}
inline auto NullDiagnosticConsumer() -> DiagnosticConsumer& {
struct Consumer : DiagnosticConsumer {
auto HandleDiagnostic(const Diagnostic& d) -> void override {}
};
static auto* consumer = new Consumer;
return *consumer;
}
template <typename LocationT>
inline auto NullDiagnosticEmitter() -> DiagnosticEmitter<LocationT>& {
static auto* emitter = new DiagnosticEmitter<LocationT>(
NullDiagnosticLocationTranslator<LocationT>(), NullDiagnosticConsumer());
return *emitter;
}
} // namespace Carbon
#endif // TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_