semantics_handle_package.cpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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 SemanticsHandlePackageApi(SemanticsContext& context,
  7. ParseTree::Node parse_node) -> bool {
  8. return context.TODO(parse_node, "HandlePackageApi");
  9. }
  10. auto SemanticsHandlePackageDirective(SemanticsContext& context,
  11. ParseTree::Node parse_node) -> bool {
  12. return context.TODO(parse_node, "HandlePackageDirective");
  13. }
  14. auto SemanticsHandlePackageImpl(SemanticsContext& context,
  15. ParseTree::Node parse_node) -> bool {
  16. return context.TODO(parse_node, "HandlePackageImpl");
  17. }
  18. auto SemanticsHandlePackageIntroducer(SemanticsContext& context,
  19. ParseTree::Node parse_node) -> bool {
  20. return context.TODO(parse_node, "HandlePackageIntroducer");
  21. }
  22. auto SemanticsHandlePackageLibrary(SemanticsContext& context,
  23. ParseTree::Node parse_node) -> bool {
  24. return context.TODO(parse_node, "HandlePackageLibrary");
  25. }
  26. } // namespace Carbon