mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-27 22:02:33 +01:00
24 lines
804 B
C++
24 lines
804 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_CONTROL_FLOW_H_
|
|
#define CARBON_EXPLORER_INTERPRETER_RESOLVE_CONTROL_FLOW_H_
|
|
|
|
#include "explorer/ast/ast.h"
|
|
#include "explorer/base/nonnull.h"
|
|
#include "explorer/base/trace_stream.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// Resolves non-local control-flow edges, such as `break` and `return`, in the
|
|
// given AST.
|
|
// On failure, `ast` is left in a partial state and should not be further
|
|
// processed.
|
|
auto ResolveControlFlow(Nonnull<TraceStream*> trace_stream, AST& ast)
|
|
-> ErrorOr<Success>;
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_EXPLORER_INTERPRETER_RESOLVE_CONTROL_FLOW_H_
|