Files
carbon-lang/toolchain/lex/lex.h
T
Jon Ross-Perkins 45ca3d28f5 Drop "diagnostic" from some filenames in the "diagnostics" folder (#6686)
Mainly because "sorting_diagnostic_consumer" is legacy, since
`SortingDiagnosticConsumer` became `SortingConsumer`. Also better
reflecting contents of these files.

Where I'm not renaming, I'm less positive about dropping "diagnostics"
from "file_diagnostics" and "null_diagnostics" (which contain both a
consumer and emitter, and "null.h" seems like poor naming), so not doing
that here. Also "diagnostic.h" contains `struct Diagnostic`, so is a
decent fit.

Assisted-by: Google Antigravity with Gemini 3 Flash
2026-02-04 17:24:55 +00:00

43 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_TOOLCHAIN_LEX_LEX_H_
#define CARBON_TOOLCHAIN_LEX_LEX_H_
#include "toolchain/base/shared_value_stores.h"
#include "toolchain/diagnostics/emitter.h"
#include "toolchain/lex/tokenized_buffer.h"
#include "toolchain/source/source_buffer.h"
namespace Carbon::Lex {
struct LexOptions {
// Options must be set individually, not through initialization.
explicit LexOptions() = default;
// If set, a consumer for diagnostics. Otherwise, diagnostics go to stderr.
Diagnostics::Consumer* consumer = nullptr;
// If set, enables verbose output.
llvm::raw_ostream* vlog_stream = nullptr;
// If set, tokens will be dumped to this.
llvm::raw_ostream* dump_stream = nullptr;
// When dumping, whether to omit `FileStart` and `FileEnd` in output.
bool omit_file_boundary_tokens = false;
};
// Lexes a buffer of source code into a tokenized buffer.
//
// The provided source buffer must outlive any returned `TokenizedBuffer`
// which will refer into the source.
auto Lex(SharedValueStores& value_stores,
SourceBuffer& source [[clang::lifetimebound]], LexOptions options)
-> TokenizedBuffer;
} // namespace Carbon::Lex
#endif // CARBON_TOOLCHAIN_LEX_LEX_H_