handle_named_constraint.cpp 1.2 KB

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