FLANG
unparse-with-symbols.h
1//===-- include/flang/Semantics/unparse-with-symbols.h ----------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef FORTRAN_SEMANTICS_UNPARSE_WITH_SYMBOLS_H_
10#define FORTRAN_SEMANTICS_UNPARSE_WITH_SYMBOLS_H_
11
12#include "flang/Parser/characters.h"
13#include <iosfwd>
14
15namespace llvm {
16class raw_ostream;
17}
18
19namespace Fortran::common {
20class LangOptions;
21}
22
23namespace Fortran::parser {
24struct Program;
25}
26
27namespace Fortran::semantics {
29void UnparseWithSymbols(llvm::raw_ostream &, const parser::Program &,
30 const common::LangOptions &,
31 parser::Encoding encoding = parser::Encoding::UTF_8);
32void UnparseWithModules(llvm::raw_ostream &, SemanticsContext &,
33 const parser::Program &,
34 parser::Encoding encoding = parser::Encoding::UTF_8);
35}
36
37#endif // FORTRAN_SEMANTICS_UNPARSE_WITH_SYMBOLS_H_
Definition LangOptions.h:58
Definition semantics.h:67
Definition bit-population-count.h:20
Definition check-expression.h:19