mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 17:10:11 +01:00
Also remove inheritance from NamedEntity for some classes that don't need it.
19 lines
596 B
C++
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_
|