mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 19:10:14 +01:00
This modifies scripts/check_header_guards.py to add the CARBON_ prefix; everything else is pre-commit.
45 lines
1.4 KiB
C++
45 lines
1.4 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 CARBON_EXPLORER_COMMON_ERROR_BUILDERS_H_
|
|
#define CARBON_EXPLORER_COMMON_ERROR_BUILDERS_H_
|
|
|
|
#include "common/error.h"
|
|
#include "explorer/common/source_location.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// Builds an Error instance with the specified message. This should be used for
|
|
// non-recoverable errors with user input.
|
|
//
|
|
// For example:
|
|
// return ProgramError(line_num) << "Line is bad!";
|
|
// return ProgramError() << "Application is bad!";
|
|
//
|
|
// Where possible, try to identify the error as a compilation or runtime error.
|
|
// Use CHECK/FATAL for internal errors. The generic program error option is
|
|
// provided as a fallback for cases that don't fit those classifications.
|
|
|
|
inline auto CompilationError(SourceLocation loc) -> ErrorBuilder {
|
|
ErrorBuilder builder;
|
|
(void)(builder << "COMPILATION ERROR: " << loc << ": ");
|
|
return builder;
|
|
}
|
|
|
|
inline auto ProgramError(SourceLocation loc) -> ErrorBuilder {
|
|
ErrorBuilder builder;
|
|
(void)(builder << "PROGRAM ERROR: " << loc << ": ");
|
|
return builder;
|
|
}
|
|
|
|
inline auto RuntimeError(SourceLocation loc) -> ErrorBuilder {
|
|
ErrorBuilder builder;
|
|
(void)(builder << "RUNTIME ERROR: " << loc << ": ");
|
|
return builder;
|
|
}
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_EXPLORER_COMMON_ERROR_BUILDERS_H_
|