| 12345678910111213141516171819 |
- // 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_SEM_IR_FORMATTER_H_
- #define CARBON_TOOLCHAIN_SEM_IR_FORMATTER_H_
- #include "llvm/Support/raw_ostream.h"
- #include "toolchain/sem_ir/file.h"
- namespace Carbon::SemIR {
- auto FormatFile(const Lex::TokenizedBuffer& tokenized_buffer,
- const Parse::Tree& parse_tree, const File& sem_ir,
- llvm::raw_ostream& out) -> void;
- } // namespace Carbon::SemIR
- #endif // CARBON_TOOLCHAIN_SEM_IR_FORMATTER_H_
|