mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This is addressing an issue left behind by the context switch, removing a few diagnostics that had been in the header rather than figuring out proper homes. I'm splitting one for semis a little further, sharing one, and then the other two are actually able to be moved into more specific homes as-is (one is only used in one place, clearly an oversight that it wasn't there already).
65 lines
2.5 KiB
C++
65 lines
2.5 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/parser/parser_context.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// Handles DeclarationNameAndParamsAs(Optional|Required).
|
|
static auto ParserHandleDeclarationNameAndParams(ParserContext& context,
|
|
bool params_required) -> void {
|
|
auto state = context.PopState();
|
|
|
|
if (!context.ConsumeAndAddLeafNodeIf(TokenKind::Identifier,
|
|
ParseNodeKind::DeclaredName)) {
|
|
CARBON_DIAGNOSTIC(ExpectedDeclarationName, Error,
|
|
"`{0}` introducer should be followed by a name.",
|
|
TokenKind);
|
|
context.emitter().Emit(*context.position(), ExpectedDeclarationName,
|
|
context.tokens().GetKind(state.token));
|
|
context.ReturnErrorOnState();
|
|
return;
|
|
}
|
|
|
|
if (context.PositionIs(TokenKind::OpenSquareBracket)) {
|
|
context.PushState(ParserState::DeclarationNameAndParamsAfterDeduced);
|
|
context.PushState(ParserState::ParameterListAsDeduced);
|
|
} else if (context.PositionIs(TokenKind::OpenParen)) {
|
|
context.PushState(ParserState::ParameterListAsRegular);
|
|
} else if (params_required) {
|
|
CARBON_DIAGNOSTIC(ParametersRequiredByIntroducer, Error,
|
|
"`{0}` requires a `(` for parameters.", TokenKind);
|
|
context.emitter().Emit(*context.position(), ParametersRequiredByIntroducer,
|
|
context.tokens().GetKind(state.token));
|
|
context.ReturnErrorOnState();
|
|
}
|
|
}
|
|
|
|
auto ParserHandleDeclarationNameAndParamsAsOptional(ParserContext& context)
|
|
-> void {
|
|
ParserHandleDeclarationNameAndParams(context, /*params_required=*/false);
|
|
}
|
|
|
|
auto ParserHandleDeclarationNameAndParamsAsRequired(ParserContext& context)
|
|
-> void {
|
|
ParserHandleDeclarationNameAndParams(context, /*params_required=*/true);
|
|
}
|
|
|
|
auto ParserHandleDeclarationNameAndParamsAfterDeduced(ParserContext& context)
|
|
-> void {
|
|
context.PopAndDiscardState();
|
|
|
|
if (context.PositionIs(TokenKind::OpenParen)) {
|
|
context.PushState(ParserState::ParameterListAsRegular);
|
|
} else {
|
|
CARBON_DIAGNOSTIC(
|
|
ParametersRequiredByDeduced, Error,
|
|
"A `(` for parameters is required after deduced parameters.");
|
|
context.emitter().Emit(*context.position(), ParametersRequiredByDeduced);
|
|
context.ReturnErrorOnState();
|
|
}
|
|
}
|
|
|
|
} // namespace Carbon
|