semantics_handle_class.cpp 914 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/semantics/semantics_context.h"
  5. namespace Carbon::Check {
  6. auto HandleClassDeclaration(Context& context, ParseTree::Node parse_node)
  7. -> bool {
  8. return context.TODO(parse_node, "HandleClassDeclaration");
  9. }
  10. auto HandleClassDefinition(Context& context, ParseTree::Node parse_node)
  11. -> bool {
  12. return context.TODO(parse_node, "HandleClassDefinition");
  13. }
  14. auto HandleClassDefinitionStart(Context& context, ParseTree::Node parse_node)
  15. -> bool {
  16. return context.TODO(parse_node, "HandleClassDefinitionStart");
  17. }
  18. auto HandleClassIntroducer(Context& context, ParseTree::Node parse_node)
  19. -> bool {
  20. return context.TODO(parse_node, "HandleClassIntroducer");
  21. }
  22. } // namespace Carbon::Check