handle_impl.cpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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 HandleImplIntroducer(Context& context, Parse::NodeId parse_node) -> bool {
  7. return context.TODO(parse_node, "HandleImplIntroducer");
  8. }
  9. auto HandleImplForall(Context& context, Parse::NodeId parse_node) -> bool {
  10. return context.TODO(parse_node, "HandleImplForall");
  11. }
  12. auto HandleImplAs(Context& context, Parse::NodeId parse_node) -> bool {
  13. return context.TODO(parse_node, "HandleImplAs");
  14. }
  15. auto HandleImplDecl(Context& context, Parse::NodeId parse_node) -> bool {
  16. return context.TODO(parse_node, "HandleImplDecl");
  17. }
  18. auto HandleImplDefinitionStart(Context& context, Parse::NodeId parse_node)
  19. -> bool {
  20. return context.TODO(parse_node, "HandleImplDefinitionStart");
  21. }
  22. auto HandleImplDefinition(Context& context, Parse::NodeId parse_node) -> bool {
  23. return context.TODO(parse_node, "HandleImplDefinition");
  24. }
  25. } // namespace Carbon::Check