Files
carbon-lang/explorer/interpreter/resolve_names.h
T
Jon Meow 20728dbd3a CARBON_ header guards (#1261)
This modifies scripts/check_header_guards.py to add the CARBON_ prefix; everything else is pre-commit.
2022-05-12 17:25:43 -07:00

21 lines
658 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/common/arena.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) -> ErrorOr<Success>;
} // namespace Carbon
#endif // CARBON_EXPLORER_INTERPRETER_RESOLVE_NAMES_H_