| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- // 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"
- #include "toolchain/parse/handle.h"
- namespace Carbon::Parse {
- auto HandleStatement(Context& context) -> void {
- context.PopAndDiscardState();
- switch (context.PositionKind()) {
- case Lex::TokenKind::Alias: {
- context.PushState(State::Alias);
- context.AddLeafNode(NodeKind::AliasIntroducer, context.Consume());
- break;
- }
- 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.ConsumeAndDiscard();
- break;
- }
- case Lex::TokenKind::If: {
- context.PushState(State::StatementIf);
- break;
- }
- case Lex::TokenKind::Let: {
- context.PushState(State::Let);
- context.AddLeafNode(NodeKind::LetIntroducer, context.Consume());
- break;
- }
- case Lex::TokenKind::Return: {
- context.PushState(State::StatementReturn);
- break;
- }
- case Lex::TokenKind::Returned: {
- context.PushState(State::VarAsReturned);
- break;
- }
- case Lex::TokenKind::Var: {
- context.PushState(State::VarAsDecl);
- context.AddLeafNode(NodeKind::VariableIntroducer, context.Consume());
- break;
- }
- case Lex::TokenKind::While: {
- context.PushState(State::StatementWhile);
- break;
- }
- case Lex::TokenKind::Match: {
- context.PushState(State::MatchIntroducer);
- 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.
- semi = context.SkipPastLikelyEnd(state.token);
- }
- context.AddNode(node_kind, *semi, 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::TokenIndex> 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);
- context.AddLeafNode(NodeKind::VariableIntroducer, context.Consume());
- } else {
- CARBON_DIAGNOSTIC(ExpectedVariableDecl, Error,
- "Expected `var` declaration.");
- context.emitter().Emit(*context.position(), ExpectedVariableDecl);
- if (auto next_in = context.FindNextOf({Lex::TokenKind::In})) {
- context.SkipTo(*next_in);
- context.ConsumeAndDiscard();
- }
- state.has_error = true;
- context.PushState(state);
- }
- }
- auto HandleStatementForHeaderIn(Context& context) -> void {
- auto state = context.PopState();
- context.PushState(state, State::StatementForHeaderFinish);
- 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.has_error);
- }
- auto HandleStatementIf(Context& context) -> void {
- context.PopAndDiscardState();
- context.PushState(State::StatementIfConditionFinish);
- context.PushState(State::ParenConditionAsIf);
- context.ConsumeAndDiscard();
- }
- auto HandleStatementIfConditionFinish(Context& context) -> void {
- auto state = context.PopState();
- context.PushState(state, State::StatementIfThenBlockFinish);
- context.PushState(State::CodeBlock);
- }
- auto HandleStatementIfThenBlockFinish(Context& context) -> void {
- auto state = context.PopState();
- if (context.ConsumeAndAddLeafNodeIf(Lex::TokenKind::Else,
- NodeKind::IfStatementElse)) {
- context.PushState(state, State::StatementIfElseBlockFinish);
- // `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.has_error);
- }
- }
- auto HandleStatementIfElseBlockFinish(Context& context) -> void {
- auto state = context.PopState();
- context.AddNode(NodeKind::IfStatement, state.token, state.has_error);
- }
- auto HandleStatementReturn(Context& context) -> void {
- auto state = context.PopState();
- context.PushState(state, State::StatementReturnFinish);
- context.AddLeafNode(NodeKind::ReturnStatementStart, context.Consume());
- if (auto var_token = context.ConsumeIf(Lex::TokenKind::Var)) {
- // `return var;`
- context.AddLeafNode(NodeKind::ReturnVarModifier, *var_token);
- } else if (!context.PositionIs(Lex::TokenKind::Semi)) {
- // `return <expression>;`
- context.PushState(State::Expr);
- } else {
- // `return;`
- }
- }
- 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.ConsumeAndDiscard();
- }
- auto HandleStatementWhileConditionFinish(Context& context) -> void {
- auto state = context.PopState();
- context.PushState(state, State::StatementWhileBlockFinish);
- context.PushState(State::CodeBlock);
- }
- auto HandleStatementWhileBlockFinish(Context& context) -> void {
- auto state = context.PopState();
- context.AddNode(NodeKind::WhileStatement, state.token, state.has_error);
- }
- } // namespace Carbon::Parse
|