| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // 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 CARBON_TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_
- #define CARBON_TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_
- #include "toolchain/diagnostics/diagnostic_emitter.h"
- namespace Carbon {
- template <typename LocationT>
- inline auto NullDiagnosticConverter() -> DiagnosticConverter<LocationT>& {
- struct Converter : public DiagnosticConverter<LocationT> {
- auto ConvertLocation(
- LocationT /*loc*/,
- DiagnosticConverter<LocationT>::ContextFnT /*context_fn*/) const
- -> DiagnosticLocation override {
- return {};
- }
- };
- static auto* converter = new Converter;
- return *converter;
- }
- inline auto NullDiagnosticConsumer() -> DiagnosticConsumer& {
- struct Consumer : DiagnosticConsumer {
- auto HandleDiagnostic(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>(
- NullDiagnosticConverter<LocationT>(), NullDiagnosticConsumer());
- return *emitter;
- }
- } // namespace Carbon
- #endif // CARBON_TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_
|