| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // 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_CHECK_CHECK_H_
- #define CARBON_TOOLCHAIN_CHECK_CHECK_H_
- #include "common/ostream.h"
- #include "toolchain/base/shared_value_stores.h"
- #include "toolchain/check/sem_ir_diagnostic_converter.h"
- #include "toolchain/diagnostics/diagnostic_emitter.h"
- #include "toolchain/lex/tokenized_buffer.h"
- #include "toolchain/parse/tree.h"
- #include "toolchain/parse/tree_and_subtrees.h"
- #include "toolchain/sem_ir/file.h"
- namespace Carbon::Check {
- // Checking information that's tracked per file.
- struct Unit {
- SharedValueStores* value_stores;
- const Lex::TokenizedBuffer* tokens;
- const Parse::Tree* parse_tree;
- DiagnosticConsumer* consumer;
- // Returns a lazily constructed TreeAndSubtrees.
- std::function<const Parse::TreeAndSubtrees&()> get_parse_tree_and_subtrees;
- // The generated IR. Unset on input, set on output.
- std::optional<SemIR::File>* sem_ir;
- };
- // Checks a group of parse trees. This will use imports to decide the order of
- // checking.
- auto CheckParseTrees(
- llvm::MutableArrayRef<Unit> units,
- llvm::MutableArrayRef<Parse::NodeLocConverter> node_converters,
- bool prelude_import, llvm::raw_ostream* vlog_stream) -> void;
- } // namespace Carbon::Check
- #endif // CARBON_TOOLCHAIN_CHECK_CHECK_H_
|