mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 22:02:28 +01:00
The code is pretty intertwined: having the AST be truly mutable means (to me) changing parser.ypp to return non-const values, but then the way things are passed around between objects should be non-const (particularly an issue with lists), which then creates issues with construction of lists in the TypeChecker, which then TypeChecker needs to mostly be non-const. Due to the difficulties in breaking this apart, whereas I'd previously considering refactoring accessor naming in the same PR, I've largely avoided doing so. The intent is then that this PR focuses mainly on const -> non-const AST behavior. call_main moves out of interpreter.cpp so that interpreter.cpp can receive a fully const AST.
31 lines
845 B
C++
31 lines
845 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;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // EXECUTABLE_SEMANTICS_AST_AST_H_
|