semantics_handle_class.cpp 1.1 KB

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 {
  6. auto SemanticsHandleClassDeclaration(SemanticsContext& context,
  7. ParseTree::Node parse_node) -> bool {
  8. return context.TODO(parse_node, "HandleClassDeclaration");
  9. }
  10. auto SemanticsHandleClassDefinition(SemanticsContext& context,
  11. ParseTree::Node parse_node) -> bool {
  12. return context.TODO(parse_node, "HandleClassDefinition");
  13. }
  14. auto SemanticsHandleClassDefinitionStart(SemanticsContext& context,
  15. ParseTree::Node parse_node) -> bool {
  16. return context.TODO(parse_node, "HandleClassDefinitionStart");
  17. }
  18. auto SemanticsHandleClassIntroducer(SemanticsContext& context,
  19. ParseTree::Node parse_node) -> bool {
  20. return context.TODO(parse_node, "HandleClassIntroducer");
  21. }
  22. } // namespace Carbon