mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
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
|
|
|
|
#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
|