| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // 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/parser/parser_context.h"
- namespace Carbon::Parse {
- auto HandleFunctionIntroducer(Context& context) -> void {
- auto state = context.PopState();
- context.AddLeafNode(NodeKind::FunctionIntroducer, context.Consume());
- state.state = State::FunctionAfterParameters;
- context.PushState(state);
- context.PushState(State::DeclarationNameAndParamsAsRequired, state.token);
- }
- auto HandleFunctionAfterParameters(Context& context) -> void {
- auto state = context.PopState();
- // Regardless of whether there's a return type, we'll finish the signature.
- state.state = State::FunctionSignatureFinish;
- context.PushState(state);
- // If there is a return type, parse the expression before adding the return
- // type nod.e
- if (context.PositionIs(TokenKind::MinusGreater)) {
- context.PushState(State::FunctionReturnTypeFinish);
- ++context.position();
- context.PushStateForExpression(PrecedenceGroup::ForType());
- }
- }
- auto HandleFunctionReturnTypeFinish(Context& context) -> void {
- auto state = context.PopState();
- context.AddNode(NodeKind::ReturnType, state.token, state.subtree_start,
- state.has_error);
- }
- auto HandleFunctionSignatureFinish(Context& context) -> void {
- auto state = context.PopState();
- switch (context.PositionKind()) {
- case TokenKind::Semi: {
- context.AddNode(NodeKind::FunctionDeclaration, context.Consume(),
- state.subtree_start, state.has_error);
- break;
- }
- case TokenKind::OpenCurlyBrace: {
- if (auto decl_context = context.GetDeclarationContext();
- decl_context == Context::DeclarationContext::Interface ||
- decl_context == Context::DeclarationContext::NamedConstraint) {
- CARBON_DIAGNOSTIC(
- MethodImplNotAllowed, Error,
- "Method implementations are not allowed in interfaces.");
- context.emitter().Emit(*context.position(), MethodImplNotAllowed);
- context.RecoverFromDeclarationError(state,
- NodeKind::FunctionDeclaration,
- /*skip_past_likely_end=*/true);
- break;
- }
- context.AddNode(NodeKind::FunctionDefinitionStart, context.Consume(),
- state.subtree_start, state.has_error);
- // Any error is recorded on the FunctionDefinitionStart.
- state.has_error = false;
- state.state = State::FunctionDefinitionFinish;
- context.PushState(state);
- context.PushState(State::StatementScopeLoop);
- break;
- }
- default: {
- if (!state.has_error) {
- context.EmitExpectedDeclarationSemiOrDefinition(TokenKind::Fn);
- }
- // Only need to skip if we've not already found a new line.
- bool skip_past_likely_end =
- context.tokens().GetLine(*context.position()) ==
- context.tokens().GetLine(state.token);
- context.RecoverFromDeclarationError(state, NodeKind::FunctionDeclaration,
- skip_past_likely_end);
- break;
- }
- }
- }
- auto HandleFunctionDefinitionFinish(Context& context) -> void {
- auto state = context.PopState();
- context.AddNode(NodeKind::FunctionDefinition, context.Consume(),
- state.subtree_start, state.has_error);
- }
- } // namespace Carbon::Parse
|