handle_observe.cpp 920 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. #include "toolchain/check/handle.h"
  6. #include "toolchain/parse/node_ids.h"
  7. namespace Carbon::Check {
  8. auto HandleParseNode(Context& context, Parse::ObserveIntroducerId node_id)
  9. -> bool {
  10. return context.TODO(node_id, "ObserveIntroducerId");
  11. }
  12. auto HandleParseNode(Context& context, Parse::ObserveEqualEqualId node_id)
  13. -> bool {
  14. return context.TODO(node_id, "ObserveEqualEqualId");
  15. }
  16. auto HandleParseNode(Context& context, Parse::ObserveImplsId node_id) -> bool {
  17. return context.TODO(node_id, "ObserveImplsId");
  18. }
  19. auto HandleParseNode(Context& context, Parse::ObserveDeclId node_id) -> bool {
  20. return context.TODO(node_id, "ObserveDeclId");
  21. }
  22. } // namespace Carbon::Check