mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Part of switching to the [abbreviations we've decided to use](https://docs.google.com/document/d/1RRYMm42osyqhI2LyjrjockYCutQ5dOf8Abu50kTrkX0/edit?resourcekey=0-kHyqOESbOHmzZphUbtLrTw#heading=h.pph7i5m5un7q). I will rename files in a follow-up PR.
229 lines
6.8 KiB
C++
229 lines
6.8 KiB
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/parse/context.h"
|
|
|
|
namespace Carbon::Parse {
|
|
|
|
auto HandleStatement(Context& context) -> void {
|
|
context.PopAndDiscardState();
|
|
|
|
switch (context.PositionKind()) {
|
|
case Lex::TokenKind::Break: {
|
|
context.PushState(State::StatementBreakFinish);
|
|
context.AddLeafNode(NodeKind::BreakStatementStart, context.Consume());
|
|
break;
|
|
}
|
|
case Lex::TokenKind::Continue: {
|
|
context.PushState(State::StatementContinueFinish);
|
|
context.AddLeafNode(NodeKind::ContinueStatementStart, context.Consume());
|
|
break;
|
|
}
|
|
case Lex::TokenKind::For: {
|
|
context.PushState(State::StatementForFinish);
|
|
context.PushState(State::StatementForHeader);
|
|
++context.position();
|
|
break;
|
|
}
|
|
case Lex::TokenKind::If: {
|
|
context.PushState(State::StatementIf);
|
|
break;
|
|
}
|
|
case Lex::TokenKind::Let: {
|
|
context.PushState(State::Let);
|
|
break;
|
|
}
|
|
case Lex::TokenKind::Return: {
|
|
context.PushState(State::StatementReturn);
|
|
break;
|
|
}
|
|
case Lex::TokenKind::Var: {
|
|
context.PushState(State::VarAsSemicolon);
|
|
break;
|
|
}
|
|
case Lex::TokenKind::While: {
|
|
context.PushState(State::StatementWhile);
|
|
break;
|
|
}
|
|
default: {
|
|
context.PushState(State::ExprStatementFinish);
|
|
context.PushStateForExpr(PrecedenceGroup::ForExprStatement());
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Handles the `;` after a keyword statement.
|
|
static auto HandleStatementKeywordFinish(Context& context, NodeKind node_kind)
|
|
-> void {
|
|
auto state = context.PopState();
|
|
|
|
auto semi = context.ConsumeIf(Lex::TokenKind::Semi);
|
|
if (!semi) {
|
|
CARBON_DIAGNOSTIC(ExpectedStatementSemi, Error,
|
|
"`{0}` statements must end with a `;`.", Lex::TokenKind);
|
|
context.emitter().Emit(*context.position(), ExpectedStatementSemi,
|
|
context.tokens().GetKind(state.token));
|
|
state.has_error = true;
|
|
// Recover to the next semicolon if possible, otherwise indicate the
|
|
// keyword for the error.
|
|
semi = context.SkipPastLikelyEnd(state.token);
|
|
if (!semi) {
|
|
semi = state.token;
|
|
}
|
|
}
|
|
context.AddNode(node_kind, *semi, state.subtree_start, state.has_error);
|
|
}
|
|
|
|
auto HandleStatementBreakFinish(Context& context) -> void {
|
|
HandleStatementKeywordFinish(context, NodeKind::BreakStatement);
|
|
}
|
|
|
|
auto HandleStatementContinueFinish(Context& context) -> void {
|
|
HandleStatementKeywordFinish(context, NodeKind::ContinueStatement);
|
|
}
|
|
|
|
auto HandleStatementForHeader(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
std::optional<Lex::Token> open_paren =
|
|
context.ConsumeAndAddOpenParen(state.token, NodeKind::ForHeaderStart);
|
|
if (open_paren) {
|
|
state.token = *open_paren;
|
|
}
|
|
state.state = State::StatementForHeaderIn;
|
|
|
|
if (context.PositionIs(Lex::TokenKind::Var)) {
|
|
context.PushState(state);
|
|
context.PushState(State::VarAsFor);
|
|
} else {
|
|
CARBON_DIAGNOSTIC(ExpectedVariableDeclaration, Error,
|
|
"Expected `var` declaration.");
|
|
context.emitter().Emit(*context.position(), ExpectedVariableDeclaration);
|
|
|
|
if (auto next_in = context.FindNextOf({Lex::TokenKind::In})) {
|
|
context.SkipTo(*next_in);
|
|
++context.position();
|
|
}
|
|
state.has_error = true;
|
|
context.PushState(state);
|
|
}
|
|
}
|
|
|
|
auto HandleStatementForHeaderIn(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
state.state = State::StatementForHeaderFinish;
|
|
context.PushState(state);
|
|
context.PushState(State::Expr);
|
|
}
|
|
|
|
auto HandleStatementForHeaderFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
context.ConsumeAndAddCloseSymbol(state.token, state, NodeKind::ForHeader);
|
|
|
|
context.PushState(State::CodeBlock);
|
|
}
|
|
|
|
auto HandleStatementForFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
context.AddNode(NodeKind::ForStatement, state.token, state.subtree_start,
|
|
state.has_error);
|
|
}
|
|
|
|
auto HandleStatementIf(Context& context) -> void {
|
|
context.PopAndDiscardState();
|
|
|
|
context.PushState(State::StatementIfConditionFinish);
|
|
context.PushState(State::ParenConditionAsIf);
|
|
++context.position();
|
|
}
|
|
|
|
auto HandleStatementIfConditionFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
state.state = State::StatementIfThenBlockFinish;
|
|
context.PushState(state);
|
|
context.PushState(State::CodeBlock);
|
|
}
|
|
|
|
auto HandleStatementIfThenBlockFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
if (context.ConsumeAndAddLeafNodeIf(Lex::TokenKind::Else,
|
|
NodeKind::IfStatementElse)) {
|
|
state.state = State::StatementIfElseBlockFinish;
|
|
context.PushState(state);
|
|
// `else if` is permitted as a special case.
|
|
context.PushState(context.PositionIs(Lex::TokenKind::If)
|
|
? State::StatementIf
|
|
: State::CodeBlock);
|
|
} else {
|
|
context.AddNode(NodeKind::IfStatement, state.token, state.subtree_start,
|
|
state.has_error);
|
|
}
|
|
}
|
|
|
|
auto HandleStatementIfElseBlockFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
context.AddNode(NodeKind::IfStatement, state.token, state.subtree_start,
|
|
state.has_error);
|
|
}
|
|
|
|
auto HandleStatementReturn(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
state.state = State::StatementReturnFinish;
|
|
context.PushState(state);
|
|
|
|
context.AddLeafNode(NodeKind::ReturnStatementStart, context.Consume());
|
|
if (!context.PositionIs(Lex::TokenKind::Semi)) {
|
|
context.PushState(State::Expr);
|
|
}
|
|
}
|
|
|
|
auto HandleStatementReturnFinish(Context& context) -> void {
|
|
HandleStatementKeywordFinish(context, NodeKind::ReturnStatement);
|
|
}
|
|
|
|
auto HandleStatementScopeLoop(Context& context) -> void {
|
|
// This maintains the current state until we're at the end of the scope.
|
|
|
|
auto token_kind = context.PositionKind();
|
|
if (token_kind == Lex::TokenKind::CloseCurlyBrace) {
|
|
auto state = context.PopState();
|
|
if (state.has_error) {
|
|
context.ReturnErrorOnState();
|
|
}
|
|
} else {
|
|
context.PushState(State::Statement);
|
|
}
|
|
}
|
|
|
|
auto HandleStatementWhile(Context& context) -> void {
|
|
context.PopAndDiscardState();
|
|
|
|
context.PushState(State::StatementWhileConditionFinish);
|
|
context.PushState(State::ParenConditionAsWhile);
|
|
++context.position();
|
|
}
|
|
|
|
auto HandleStatementWhileConditionFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
state.state = State::StatementWhileBlockFinish;
|
|
context.PushState(state);
|
|
context.PushState(State::CodeBlock);
|
|
}
|
|
|
|
auto HandleStatementWhileBlockFinish(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
context.AddNode(NodeKind::WhileStatement, state.token, state.subtree_start,
|
|
state.has_error);
|
|
}
|
|
|
|
} // namespace Carbon::Parse
|