handle_where.cpp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. #include "toolchain/check/convert.h"
  6. #include "toolchain/check/handle.h"
  7. namespace Carbon::Check {
  8. auto HandleParseNode(Context& context, Parse::SelfTypeNameId node_id) -> bool {
  9. return context.TODO(node_id, "HandleSelfTypeName");
  10. }
  11. auto HandleParseNode(Context& context, Parse::DesignatorExprId node_id)
  12. -> bool {
  13. return context.TODO(node_id, "HandleDesignatorExpr");
  14. }
  15. auto HandleParseNode(Context& context, Parse::WhereOperandId node_id) -> bool {
  16. return context.TODO(node_id, "HandleWhereOperand");
  17. }
  18. auto HandleParseNode(Context& context, Parse::RequirementEqualId node_id)
  19. -> bool {
  20. return context.TODO(node_id, "HandleRequirementEqual");
  21. }
  22. auto HandleParseNode(Context& context, Parse::RequirementEqualEqualId node_id)
  23. -> bool {
  24. return context.TODO(node_id, "HandleRequirementEqualEqual");
  25. }
  26. auto HandleParseNode(Context& context, Parse::RequirementImplsId node_id)
  27. -> bool {
  28. return context.TODO(node_id, "HandleRequirementImpls");
  29. }
  30. auto HandleParseNode(Context& context, Parse::RequirementAndId node_id)
  31. -> bool {
  32. return context.TODO(node_id, "HandleRequirementAnd");
  33. }
  34. auto HandleParseNode(Context& context, Parse::WhereExprId node_id) -> bool {
  35. return context.TODO(node_id, "HandleWhereExpr");
  36. }
  37. } // namespace Carbon::Check