semantics_handle_class.cpp 886 B

1234567891011121314151617181920212223242526
  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, Parse::Node parse_node) -> bool {
  7. return context.TODO(parse_node, "HandleClassDeclaration");
  8. }
  9. auto HandleClassDefinition(Context& context, Parse::Node parse_node) -> bool {
  10. return context.TODO(parse_node, "HandleClassDefinition");
  11. }
  12. auto HandleClassDefinitionStart(Context& context, Parse::Node parse_node)
  13. -> bool {
  14. return context.TODO(parse_node, "HandleClassDefinitionStart");
  15. }
  16. auto HandleClassIntroducer(Context& context, Parse::Node parse_node) -> bool {
  17. return context.TODO(parse_node, "HandleClassIntroducer");
  18. }
  19. } // namespace Carbon::Check