handle_choice.cpp 991 B

123456789101112131415161718192021222324252627282930
  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 HandleChoiceDefinition(Context& context, Parse::ChoiceDefinitionId node_id)
  7. -> bool {
  8. return context.TODO(node_id, "HandleChoiceDefinition");
  9. }
  10. auto HandleChoiceIntroducer(Context& context, Parse::ChoiceIntroducerId node_id)
  11. -> bool {
  12. return context.TODO(node_id, "HandleChoiceIntroducer");
  13. }
  14. auto HandleChoiceDefinitionStart(Context& context,
  15. Parse::ChoiceDefinitionStartId node_id)
  16. -> bool {
  17. return context.TODO(node_id, "HandleChoiceDefinitionStart");
  18. }
  19. auto HandleChoiceAlternativeListComma(
  20. Context& context, Parse::ChoiceAlternativeListCommaId node_id) -> bool {
  21. return context.TODO(node_id, "HandleChoiceAlternativeListComma");
  22. }
  23. } // namespace Carbon::Check