Files
carbon-lang/toolchain/parse/handle_index_expression.cpp
T
Jon Ross-PerkinsandChandler Carruth ec182fb00d Rename lexer dir to lex (#3179)
Continuing with #3070. Just a dir and file rename (only prefix change is
lexer_file_test). Everything in the lex dir should be marked as a move.

Note, I think this closes #3070. There may still be further cleanup
later, but the organizational changes suggested there are being
completed.

---------

Co-authored-by: Chandler Carruth <chandlerc@gmail.com>
2023-09-01 02:39:04 +00:00

28 lines
935 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 HandleIndexExpression(Context& context) -> void {
auto state = context.PopState();
state.state = State::IndexExpressionFinish;
context.PushState(state);
context.AddNode(NodeKind::IndexExpressionStart,
context.ConsumeChecked(Lex::TokenKind::OpenSquareBracket),
state.subtree_start, state.has_error);
context.PushState(State::Expression);
}
auto HandleIndexExpressionFinish(Context& context) -> void {
auto state = context.PopState();
context.ConsumeAndAddCloseSymbol(state.token, state,
NodeKind::IndexExpression);
}
} // namespace Carbon::Parse