mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
I was running into some difficult merges in #2940, so I'm wanting to finish splitting this last file to minimize the chance of future issues.
35 lines
1.3 KiB
C++
35 lines
1.3 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/semantics/semantics_context.h"
|
|
#include "toolchain/semantics/semantics_node.h"
|
|
|
|
namespace Carbon {
|
|
|
|
auto SemanticsHandleNamedConstraintDeclaration(SemanticsContext& context,
|
|
ParseTree::Node parse_node)
|
|
-> bool {
|
|
return context.TODO(parse_node, "HandleNamedConstraintDeclaration");
|
|
}
|
|
|
|
auto SemanticsHandleNamedConstraintDefinition(SemanticsContext& context,
|
|
ParseTree::Node parse_node)
|
|
-> bool {
|
|
return context.TODO(parse_node, "HandleNamedConstraintDefinition");
|
|
}
|
|
|
|
auto SemanticsHandleNamedConstraintDefinitionStart(SemanticsContext& context,
|
|
ParseTree::Node parse_node)
|
|
-> bool {
|
|
return context.TODO(parse_node, "HandleNamedConstraintDefinitionStart");
|
|
}
|
|
|
|
auto SemanticsHandleNamedConstraintIntroducer(SemanticsContext& context,
|
|
ParseTree::Node parse_node)
|
|
-> bool {
|
|
return context.TODO(parse_node, "HandleNamedConstraintIntroducer");
|
|
}
|
|
|
|
} // namespace Carbon
|