Files
carbon-lang/executable_semantics/interpreter/resolve_names.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

19 lines
596 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_INTERPRETER_RESOLVE_NAMES_H_
#define EXECUTABLE_SEMANTICS_INTERPRETER_RESOLVE_NAMES_H_
#include "executable_semantics/ast/ast.h"
#include "executable_semantics/common/arena.h"
namespace Carbon {
// Resolves names (IdentifierExpressions) in the AST.
void ResolveNames(AST& ast);
} // namespace Carbon
#endif // EXECUTABLE_SEMANTICS_INTERPRETER_RESOLVE_CONTROL_FLOW_H_