semantics_handle_interface.cpp 978 B

1234567891011121314151617181920212223242526272829
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include "toolchain/semantics/semantics_context.h"
  5. namespace Carbon::Check {
  6. auto HandleInterfaceDeclaration(Context& context, ParseTree::Node parse_node)
  7. -> bool {
  8. return context.TODO(parse_node, "HandleInterfaceDeclaration");
  9. }
  10. auto HandleInterfaceDefinition(Context& context, ParseTree::Node parse_node)
  11. -> bool {
  12. return context.TODO(parse_node, "HandleInterfaceDefinition");
  13. }
  14. auto HandleInterfaceDefinitionStart(Context& context,
  15. ParseTree::Node parse_node) -> bool {
  16. return context.TODO(parse_node, "HandleInterfaceDefinitionStart");
  17. }
  18. auto HandleInterfaceIntroducer(Context& context, ParseTree::Node parse_node)
  19. -> bool {
  20. return context.TODO(parse_node, "HandleInterfaceIntroducer");
  21. }
  22. } // namespace Carbon::Check