mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
26 lines
848 B
C++
26 lines
848 B
C++
// 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/lex/token_kind.h"
|
|
#include "toolchain/parse/context.h"
|
|
|
|
namespace Carbon::Parse {
|
|
|
|
auto HandleIndexExpr(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
context.PushState(state, State::IndexExprFinish);
|
|
context.AddNode(NodeKind::IndexExprStart,
|
|
context.ConsumeChecked(Lex::TokenKind::OpenSquareBracket),
|
|
state.subtree_start, state.has_error);
|
|
context.PushState(State::Expr);
|
|
}
|
|
|
|
auto HandleIndexExprFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
context.ConsumeAndAddCloseSymbol(state.token, state, NodeKind::IndexExpr);
|
|
}
|
|
|
|
} // namespace Carbon::Parse
|