handle_interface.cpp 898 B

12345678910111213141516171819202122232425262728
  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/check/context.h"
  5. namespace Carbon::Check {
  6. auto HandleInterfaceDecl(Context& context, Parse::Node parse_node) -> bool {
  7. return context.TODO(parse_node, "HandleInterfaceDecl");
  8. }
  9. auto HandleInterfaceDefinition(Context& context, Parse::Node parse_node)
  10. -> bool {
  11. return context.TODO(parse_node, "HandleInterfaceDefinition");
  12. }
  13. auto HandleInterfaceDefinitionStart(Context& context, Parse::Node parse_node)
  14. -> bool {
  15. return context.TODO(parse_node, "HandleInterfaceDefinitionStart");
  16. }
  17. auto HandleInterfaceIntroducer(Context& context, Parse::Node parse_node)
  18. -> bool {
  19. return context.TODO(parse_node, "HandleInterfaceIntroducer");
  20. }
  21. } // namespace Carbon::Check