handle_named_constraint.cpp 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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/handle.h"
  6. namespace Carbon::Check {
  7. auto HandleNamedConstraintDecl(Context& context,
  8. Parse::NamedConstraintDeclId node_id) -> bool {
  9. return context.TODO(node_id, "HandleNamedConstraintDecl");
  10. }
  11. auto HandleNamedConstraintDefinition(Context& context,
  12. Parse::NamedConstraintDefinitionId node_id)
  13. -> bool {
  14. // Note that the decl_name_stack will be popped by `ProcessNodeIds`.
  15. return context.TODO(node_id, "HandleNamedConstraintDefinition");
  16. }
  17. auto HandleNamedConstraintDefinitionStart(
  18. Context& context, Parse::NamedConstraintDefinitionStartId node_id) -> bool {
  19. return context.TODO(node_id, "HandleNamedConstraintDefinitionStart");
  20. }
  21. auto HandleNamedConstraintIntroducer(Context& context,
  22. Parse::NamedConstraintIntroducerId node_id)
  23. -> bool {
  24. return context.TODO(node_id, "HandleNamedConstraintIntroducer");
  25. }
  26. } // namespace Carbon::Check