handle_import_and_package.cpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. namespace Carbon::Check {
  6. auto HandleImportIntroducer(Context& context, Parse::Node parse_node) -> bool {
  7. return context.TODO(parse_node, "HandleImportIntroducer");
  8. }
  9. auto HandlePackageIntroducer(Context& context, Parse::Node parse_node) -> bool {
  10. return context.TODO(parse_node, "HandlePackageIntroducer");
  11. }
  12. auto HandleLibrary(Context& context, Parse::Node parse_node) -> bool {
  13. return context.TODO(parse_node, "HandleLibrary");
  14. }
  15. auto HandlePackageApi(Context& context, Parse::Node parse_node) -> bool {
  16. return context.TODO(parse_node, "HandlePackageApi");
  17. }
  18. auto HandlePackageImpl(Context& context, Parse::Node parse_node) -> bool {
  19. return context.TODO(parse_node, "HandlePackageImpl");
  20. }
  21. auto HandleImportDirective(Context& context, Parse::Node parse_node) -> bool {
  22. return context.TODO(parse_node, "HandleImportDirective");
  23. }
  24. auto HandlePackageDirective(Context& context, Parse::Node parse_node) -> bool {
  25. return context.TODO(parse_node, "HandlePackageDirective");
  26. }
  27. } // namespace Carbon::Check