Files
carbon-lang/executable_semantics/ast/ast.h
T
Geoff Romer f75b4d322f Handle use-before-declare in static name lookup (#967)
Also remove inheritance from NamedEntity for some classes that don't need it.
2021-12-03 13:52:31 -08:00

33 lines
955 B
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 EXECUTABLE_SEMANTICS_AST_AST_H_
#define EXECUTABLE_SEMANTICS_AST_AST_H_
#include <vector>
#include "executable_semantics/ast/declaration.h"
#include "executable_semantics/ast/library_name.h"
#include "executable_semantics/common/nonnull.h"
namespace Carbon {
// A Carbon file's AST.
struct AST {
// The package directive's library.
LibraryName package;
// The package directive's API or impl state.
bool is_api;
// Import directives.
std::vector<LibraryName> imports;
// The file's ordered declarations.
std::vector<Nonnull<Declaration*>> declarations;
// Synthesized call to `Main`. Injected after parsing.
std::optional<Nonnull<CallExpression*>> main_call;
};
} // namespace Carbon
#endif // EXECUTABLE_SEMANTICS_AST_AST_H_