resolve_names.h 596 B

123456789101112131415161718
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #ifndef EXECUTABLE_SEMANTICS_INTERPRETER_RESOLVE_NAMES_H_
  5. #define EXECUTABLE_SEMANTICS_INTERPRETER_RESOLVE_NAMES_H_
  6. #include "executable_semantics/ast/ast.h"
  7. #include "executable_semantics/common/arena.h"
  8. namespace Carbon {
  9. // Resolves names (IdentifierExpressions) in the AST.
  10. void ResolveNames(AST& ast);
  11. } // namespace Carbon
  12. #endif // EXECUTABLE_SEMANTICS_INTERPRETER_RESOLVE_CONTROL_FLOW_H_