// 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 #include "toolchain/check/context.h" namespace Carbon::Check { auto HandleImplIntroducer(Context& context, Parse::NodeId parse_node) -> bool { return context.TODO(parse_node, "HandleImplIntroducer"); } auto HandleImplForall(Context& context, Parse::NodeId parse_node) -> bool { return context.TODO(parse_node, "HandleImplForall"); } auto HandleImplAs(Context& context, Parse::NodeId parse_node) -> bool { return context.TODO(parse_node, "HandleImplAs"); } auto HandleImplDecl(Context& context, Parse::NodeId parse_node) -> bool { return context.TODO(parse_node, "HandleImplDecl"); } auto HandleImplDefinitionStart(Context& context, Parse::NodeId parse_node) -> bool { return context.TODO(parse_node, "HandleImplDefinitionStart"); } auto HandleImplDefinition(Context& context, Parse::NodeId parse_node) -> bool { return context.TODO(parse_node, "HandleImplDefinition"); } } // namespace Carbon::Check