| 1234567891011121314151617181920212223242526272829 |
- // 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"
- namespace Carbon::Check {
- auto HandleInterfaceDeclaration(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleInterfaceDeclaration");
- }
- auto HandleInterfaceDefinition(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleInterfaceDefinition");
- }
- auto HandleInterfaceDefinitionStart(Context& context,
- ParseTree::Node parse_node) -> bool {
- return context.TODO(parse_node, "HandleInterfaceDefinitionStart");
- }
- auto HandleInterfaceIntroducer(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleInterfaceIntroducer");
- }
- } // namespace Carbon::Check
|