forked from carbon-language/carbon-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ast.h
36 lines (29 loc) · 1.07 KB
/
ast.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// 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_EXPLORER_AST_AST_H_
#define CARBON_EXPLORER_AST_AST_H_
#include <vector>
#include "explorer/ast/declaration.h"
#include "explorer/ast/library_name.h"
#include "explorer/base/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;
// The number of declarations which came from the prelude.
// TODO: This should be removed once the prelude AST can be separated from
// per-file ASTs.
int num_prelude_declarations = 0;
};
} // namespace Carbon
#endif // CARBON_EXPLORER_AST_AST_H_