semantics_handle_interface.cpp 1.1 KB

123456789101112131415161718192021222324252627282930
  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 {
  6. auto SemanticsHandleInterfaceDeclaration(SemanticsContext& context,
  7. ParseTree::Node parse_node) -> bool {
  8. return context.TODO(parse_node, "HandleInterfaceDeclaration");
  9. }
  10. auto SemanticsHandleInterfaceDefinition(SemanticsContext& context,
  11. ParseTree::Node parse_node) -> bool {
  12. return context.TODO(parse_node, "HandleInterfaceDefinition");
  13. }
  14. auto SemanticsHandleInterfaceDefinitionStart(SemanticsContext& context,
  15. ParseTree::Node parse_node)
  16. -> bool {
  17. return context.TODO(parse_node, "HandleInterfaceDefinitionStart");
  18. }
  19. auto SemanticsHandleInterfaceIntroducer(SemanticsContext& context,
  20. ParseTree::Node parse_node) -> bool {
  21. return context.TODO(parse_node, "HandleInterfaceIntroducer");
  22. }
  23. } // namespace Carbon