semantics_handle_index.cpp 723 B

123456789101112131415161718192021
  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 <utility>
  5. #include "toolchain/semantics/semantics_context.h"
  6. namespace Carbon {
  7. auto SemanticsHandleIndexExpressionStart(SemanticsContext& context,
  8. ParseTree::Node parse_node) -> bool {
  9. return context.TODO(parse_node, "HandleIndexExpressionStart");
  10. }
  11. auto SemanticsHandleIndexExpression(SemanticsContext& context,
  12. ParseTree::Node parse_node) -> bool {
  13. return context.TODO(parse_node, "HandleIndexExpression");
  14. }
  15. } // namespace Carbon