semantics_handle_named_constraint.cpp 1.3 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/semantics/semantics_context.h"
  5. #include "toolchain/semantics/semantics_node.h"
  6. namespace Carbon {
  7. auto SemanticsHandleNamedConstraintDeclaration(SemanticsContext& context,
  8. ParseTree::Node parse_node)
  9. -> bool {
  10. return context.TODO(parse_node, "HandleNamedConstraintDeclaration");
  11. }
  12. auto SemanticsHandleNamedConstraintDefinition(SemanticsContext& context,
  13. ParseTree::Node parse_node)
  14. -> bool {
  15. return context.TODO(parse_node, "HandleNamedConstraintDefinition");
  16. }
  17. auto SemanticsHandleNamedConstraintDefinitionStart(SemanticsContext& context,
  18. ParseTree::Node parse_node)
  19. -> bool {
  20. return context.TODO(parse_node, "HandleNamedConstraintDefinitionStart");
  21. }
  22. auto SemanticsHandleNamedConstraintIntroducer(SemanticsContext& context,
  23. ParseTree::Node parse_node)
  24. -> bool {
  25. return context.TODO(parse_node, "HandleNamedConstraintIntroducer");
  26. }
  27. } // namespace Carbon