mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-26 22:02:30 +01:00
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>
28 lines
935 B
C++
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
|