mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:40:12 +01:00
23 lines
736 B
C++
23 lines
736 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 CARBON_EXPLORER_INTERPRETER_RESOLVE_NAMES_H_
|
|
#define CARBON_EXPLORER_INTERPRETER_RESOLVE_NAMES_H_
|
|
|
|
#include "explorer/ast/ast.h"
|
|
#include "explorer/base/arena.h"
|
|
#include "explorer/base/trace_stream.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// Resolves names (IdentifierExpressions) in the AST.
|
|
// On failure, `ast` is left in a partial state and should not be further
|
|
// processed.
|
|
auto ResolveNames(AST& ast, Nonnull<TraceStream*> trace_stream)
|
|
-> ErrorOr<Success>;
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_EXPLORER_INTERPRETER_RESOLVE_NAMES_H_
|