Files
carbon-lang/toolchain/parse/handle_statement.cpp
T
Richard Smith 74d52738ff Support for let declarations. (#3257)
A `let` declaration is represented by a `bind_name` node in SemIR:

```carbon-semir
  %b: i32 = bind_name "b", %a
```

Because `Check` encounters the pattern before it sees the value, we
first create the `bind_name` node with an unset value and don't add it
to the block. Then, once we've seen and converted the initializer, we
update the `bind_name` to have the value and add it to the current
block, after the initializer code.
2023-10-06 00:06:21 +00:00

229 lines
6.9 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::ExpressionStatementFinish);
context.PushStateForExpression(PrecedenceGroup::ForExpressionStatement());
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::Expression);
}
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::Expression);
}
}
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