Files
carbon-lang/toolchain/parse/handle_pattern.cpp
T
oli-ej a683fb574b Add initial support for parsing struct patterns (#7446)
Implements parsing of struct patterns as per
https://github.com/carbon-language/carbon-lang/issues/6680.

This handles the full and short syntax given in the [design
doc](https://github.com/carbon-language/carbon-lang/blob/trunk/docs/design/pattern_matching.md#struct-patterns),
but the handling of the shorthand syntax may need to change as I move on
to implementing Check support (currently the shorthand is represented as
one of `LetBindingPattern`, `VarBindingPattern`, or `VariablePattern`).

This implementation assumes that the answer to
https://github.com/carbon-language/carbon-lang/issues/7404 is that
trailing commas are allowed in the struct pattern, except for the case
where an `_` is present, in which case the next token must be the
closing brace `}`.
2026-07-30 16:37:46 +00:00

96 lines
3.7 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"
#include "toolchain/parse/handle.h"
namespace Carbon::Parse {
auto HandlePattern(Context& context) -> void {
auto state = context.PopState();
switch (context.PositionKind()) {
case Lex::TokenKind::OpenParen:
context.PushStateForPattern(
StateKind::PatternListAsTuple, state.in_var_pattern,
state.in_unused_pattern, state.in_field_shorthand_pattern,
state.binding_context, state.ambient_precedence);
break;
case Lex::TokenKind::OpenCurlyBrace:
context.PushStateForPattern(
StateKind::PatternListAsStruct, state.in_var_pattern,
state.in_unused_pattern, state.in_field_shorthand_pattern,
state.binding_context, state.ambient_precedence);
break;
case Lex::TokenKind::Var:
context.PushStateForPattern(
StateKind::VariablePattern, state.in_var_pattern,
state.in_unused_pattern, state.in_field_shorthand_pattern,
state.binding_context, state.ambient_precedence);
break;
case Lex::TokenKind::Unused:
context.PushStateForPattern(
StateKind::UnusedPattern, state.in_var_pattern,
state.in_unused_pattern, state.in_field_shorthand_pattern,
state.binding_context, state.ambient_precedence);
break;
case Lex::TokenKind::Template:
case Lex::TokenKind::Generic:
case Lex::TokenKind::Runtime:
case Lex::TokenKind::Ref:
// `self` is always a binding, even when its type is omitted (and so is not
// followed by a `:`).
case Lex::TokenKind::SelfValueIdentifier:
context.PushStateForPattern(
StateKind::BindingPattern, state.in_var_pattern,
state.in_unused_pattern, state.in_field_shorthand_pattern,
state.binding_context, state.ambient_precedence);
break;
default:
if (context.PositionKind().is_word() &&
context.PositionKind(Lookahead::NextToken)
.is_binding_pattern_operator()) {
context.PushStateForPattern(
StateKind::BindingPattern, state.in_var_pattern,
state.in_unused_pattern, state.in_field_shorthand_pattern,
state.binding_context, state.ambient_precedence);
break;
}
context.PushStateForPattern(
StateKind::ExprPattern, state.in_var_pattern, state.in_unused_pattern,
state.in_field_shorthand_pattern, state.binding_context,
state.ambient_precedence);
context.PushStateForExpr(state.ambient_precedence);
break;
}
}
auto HandleExprPattern(Context& context) -> void {
auto state = context.PopState();
// If we parsed an expression followed by a binding operator, we most likely
// have a malformed attempt to introduce a binding pattern that we interpreted
// as an expression pattern, so diagnose that here rather than diagnosing a
// missing `;` at an outer level.
if (context.PositionKind().is_binding_pattern_operator()) {
if (!state.has_error) {
CARBON_DIAGNOSTIC(ExpectedBindingName, Error,
"unexpected expression before {0} in binding pattern",
Lex::TokenKind);
// TODO: Underline the parsed expression.
context.emitter().Emit(*context.position(), ExpectedBindingName,
context.PositionKind());
state.has_error = true;
}
context.Consume();
// It'd be nice to skip the type expression here too, but we can't determine
// the end of it.
}
if (state.has_error) {
context.ReturnErrorOnState();
}
}
} // namespace Carbon::Parse