Track the start of a signature more accurately (#6760)

This change ensures that a function signature always starts with an
`IdentifierNameMaybeBeforeSignature` node (renamed from
`IdentifierNameBeforeParams`), even in the case of function declarations
like `fn F -> T` that have no parameter list. As a consequence, this
ensures that we push new entries onto `pattern_block_stack` and
`full_pattern_stack` when we start processing the function signature.
This commit is contained in:
Geoff Romer
2026-02-23 22:46:03 +00:00
committed by GitHub
parent 375a736c42
commit 4a0cf6c1fb
282 changed files with 1041 additions and 1039 deletions
+3 -2
View File
@@ -35,7 +35,8 @@ auto HandleBindingPattern(Context& context) -> void {
// The first item should be an identifier, the placeholder `_`, or `self`.
if (auto identifier = context.ConsumeIf(Lex::TokenKind::Identifier)) {
context.AddLeafNode(NodeKind::IdentifierNameNotBeforeParams, *identifier);
context.AddLeafNode(NodeKind::IdentifierNameNotBeforeSignature,
*identifier);
} else if (auto self =
context.ConsumeIf(Lex::TokenKind::SelfValueIdentifier)) {
// Checking will validate the `self` is only declared in the implicit
@@ -45,7 +46,7 @@ auto HandleBindingPattern(Context& context) -> void {
context.AddLeafNode(NodeKind::UnderscoreName, *underscore);
} else {
// Add a placeholder for the name.
context.AddLeafNode(NodeKind::IdentifierNameNotBeforeParams,
context.AddLeafNode(NodeKind::IdentifierNameNotBeforeSignature,
*context.position(), /*has_error=*/true);
on_error(/*expected_name=*/true);
}