handle_lambda.cpp 743 B

123456789101112131415161718192021222324
  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 HandleParseNode(Context& context, Parse::LambdaIntroducerId node_id)
  8. -> bool {
  9. return context.TODO(node_id, "HandleLambdaIntroducer");
  10. }
  11. auto HandleParseNode(Context& context, Parse::LambdaId node_id) -> bool {
  12. return context.TODO(node_id, "HandleLambda");
  13. }
  14. auto HandleParseNode(Context& context, Parse::TerseBodyArrowId node_id)
  15. -> bool {
  16. return context.TODO(node_id, "HandleTerseBodyArrow");
  17. }
  18. } // namespace Carbon::Check