| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- // 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_LEXER_TEST_HELPERS_H_
- #define TOOLCHAIN_LEXER_TEST_HELPERS_H_
- #include <gmock/gmock.h>
- #include <array>
- #include <string>
- #include "common/check.h"
- #include "llvm/ADT/STLExtras.h"
- #include "llvm/Support/FormatVariadic.h"
- #include "toolchain/diagnostics/diagnostic_emitter.h"
- namespace Carbon::Testing {
- // A diagnostic translator for tests that lex a single token. Produces
- // locations such as "`12.5`:1:3" to refer to the third character in the token.
- class SingleTokenDiagnosticTranslator
- : public DiagnosticLocationTranslator<const char*> {
- public:
- // Form a translator for a given token. The string provided here must refer
- // to the same character array that we are going to lex.
- explicit SingleTokenDiagnosticTranslator(llvm::StringRef token)
- : token_(token) {}
- auto GetLocation(const char* pos) -> Diagnostic::Location override {
- CHECK(llvm::is_sorted(std::array{token_.begin(), pos, token_.end()}))
- << "invalid diagnostic location";
- llvm::StringRef prefix = token_.take_front(pos - token_.begin());
- auto [before_last_newline, this_line] = prefix.rsplit('\n');
- if (before_last_newline.size() == prefix.size()) {
- // On first line.
- return {.file_name = SynthesizeFilename(),
- .line_number = 1,
- .column_number = static_cast<int32_t>(pos - token_.begin() + 1)};
- } else {
- // On second or subsequent lines. Note that the line number here is 2
- // more than the number of newlines because `rsplit` removed one newline
- // and `line_number` is 1-based.
- return {.file_name = SynthesizeFilename(),
- .line_number =
- static_cast<int32_t>(before_last_newline.count('\n') + 2),
- .column_number = static_cast<int32_t>(this_line.size() + 1)};
- }
- }
- private:
- [[nodiscard]] auto SynthesizeFilename() const -> std::string {
- return llvm::formatv("`{0}`", token_);
- }
- llvm::StringRef token_;
- };
- } // namespace Carbon::Testing
- #endif // TOOLCHAIN_LEXER_TOKENIZED_BUFFER_TEST_HELPERS_H_
|