| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #include "toolchain/semantics/semantics_context.h"
- namespace Carbon::Check {
- auto HandleBreakStatement(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleBreakStatement");
- }
- auto HandleBreakStatementStart(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleBreakStatementStart");
- }
- auto HandleContinueStatement(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleContinueStatement");
- }
- auto HandleContinueStatementStart(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleContinueStatementStart");
- }
- auto HandleForHeader(Context& context, ParseTree::Node parse_node) -> bool {
- return context.TODO(parse_node, "HandleForHeader");
- }
- auto HandleForHeaderStart(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleForHeaderStart");
- }
- auto HandleForIn(Context& context, ParseTree::Node parse_node) -> bool {
- return context.TODO(parse_node, "HandleForIn");
- }
- auto HandleForStatement(Context& context, ParseTree::Node parse_node) -> bool {
- return context.TODO(parse_node, "HandleForStatement");
- }
- auto HandleWhileCondition(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleWhileCondition");
- }
- auto HandleWhileConditionStart(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleWhileConditionStart");
- }
- auto HandleWhileStatement(Context& context, ParseTree::Node parse_node)
- -> bool {
- return context.TODO(parse_node, "HandleWhileStatement");
- }
- } // namespace Carbon::Check
|