| 123456789101112131415161718192021222324252627282930 |
- // 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_TOOLCHAIN_CHECK_IMPL_H_
- #define CARBON_TOOLCHAIN_CHECK_IMPL_H_
- #include "toolchain/check/context.h"
- #include "toolchain/sem_ir/ids.h"
- namespace Carbon::Check {
- // Returns the initial witness value for a new impl declaration.
- auto ImplWitnessForDeclaration(Context& context, const SemIR::Impl& impl)
- -> SemIR::InstId;
- // TODO: AddConstantsToImplWitnessFromConstraint()
- // Update `impl`'s witness at the start of a definition.
- auto ImplWitnessStartDefinition(Context& context, SemIR::Impl& impl) -> void;
- // Adds the function members to the witness for `impl`.
- auto FinishImplWitness(Context& context, SemIR::Impl& impl) -> void;
- // Sets all unset members of the witness for `impl` to the error instruction.
- auto FillImplWitnessWithErrors(Context& context, SemIR::Impl& impl) -> void;
- } // namespace Carbon::Check
- #endif // CARBON_TOOLCHAIN_CHECK_IMPL_H_
|