handle_named_constraint.cpp 996 B

1234567891011121314151617181920212223242526272829
  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, Parse::NodeId parse_node)
  7. -> bool {
  8. return context.TODO(parse_node, "HandleNamedConstraintDecl");
  9. }
  10. auto HandleNamedConstraintDefinition(Context& context, Parse::NodeId parse_node)
  11. -> bool {
  12. return context.TODO(parse_node, "HandleNamedConstraintDefinition");
  13. }
  14. auto HandleNamedConstraintDefinitionStart(Context& context,
  15. Parse::NodeId parse_node) -> bool {
  16. return context.TODO(parse_node, "HandleNamedConstraintDefinitionStart");
  17. }
  18. auto HandleNamedConstraintIntroducer(Context& context, Parse::NodeId parse_node)
  19. -> bool {
  20. return context.TODO(parse_node, "HandleNamedConstraintIntroducer");
  21. }
  22. } // namespace Carbon::Check