semantics_handle_loop_statement.cpp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. #include "toolchain/semantics/semantics_node.h"
  6. namespace Carbon {
  7. auto SemanticsHandleBreakStatement(SemanticsContext& context,
  8. ParseTree::Node parse_node) -> bool {
  9. return context.TODO(parse_node, "HandleBreakStatement");
  10. }
  11. auto SemanticsHandleBreakStatementStart(SemanticsContext& context,
  12. ParseTree::Node parse_node) -> bool {
  13. return context.TODO(parse_node, "HandleBreakStatementStart");
  14. }
  15. auto SemanticsHandleContinueStatement(SemanticsContext& context,
  16. ParseTree::Node parse_node) -> bool {
  17. return context.TODO(parse_node, "HandleContinueStatement");
  18. }
  19. auto SemanticsHandleContinueStatementStart(SemanticsContext& context,
  20. ParseTree::Node parse_node) -> bool {
  21. return context.TODO(parse_node, "HandleContinueStatementStart");
  22. }
  23. auto SemanticsHandleForHeader(SemanticsContext& context,
  24. ParseTree::Node parse_node) -> bool {
  25. return context.TODO(parse_node, "HandleForHeader");
  26. }
  27. auto SemanticsHandleForHeaderStart(SemanticsContext& context,
  28. ParseTree::Node parse_node) -> bool {
  29. return context.TODO(parse_node, "HandleForHeaderStart");
  30. }
  31. auto SemanticsHandleForIn(SemanticsContext& context, ParseTree::Node parse_node)
  32. -> bool {
  33. return context.TODO(parse_node, "HandleForIn");
  34. }
  35. auto SemanticsHandleForStatement(SemanticsContext& context,
  36. ParseTree::Node parse_node) -> bool {
  37. return context.TODO(parse_node, "HandleForStatement");
  38. }
  39. auto SemanticsHandleWhileCondition(SemanticsContext& context,
  40. ParseTree::Node parse_node) -> bool {
  41. return context.TODO(parse_node, "HandleWhileCondition");
  42. }
  43. auto SemanticsHandleWhileConditionStart(SemanticsContext& context,
  44. ParseTree::Node parse_node) -> bool {
  45. return context.TODO(parse_node, "HandleWhileConditionStart");
  46. }
  47. auto SemanticsHandleWhileStatement(SemanticsContext& context,
  48. ParseTree::Node parse_node) -> bool {
  49. return context.TODO(parse_node, "HandleWhileStatement");
  50. }
  51. } // namespace Carbon