mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:20:11 +01:00
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 `}`.
39 lines
1.3 KiB
C++
39 lines
1.3 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 HandleUnusedPattern(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
if (state.in_unused_pattern) {
|
|
CARBON_DIAGNOSTIC(NestedUnused, Error,
|
|
"`unused` nested within another `unused`");
|
|
context.emitter().Emit(*context.position(), NestedUnused);
|
|
state.has_error = true;
|
|
}
|
|
context.PushState(StateKind::FinishUnusedPattern);
|
|
context.ConsumeChecked(Lex::TokenKind::Unused);
|
|
|
|
context.PushStateForPattern(StateKind::Pattern, state.in_var_pattern,
|
|
/*in_unused_pattern=*/true,
|
|
state.in_field_shorthand_pattern,
|
|
state.binding_context, state.ambient_precedence);
|
|
}
|
|
|
|
auto HandleFinishUnusedPattern(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
context.AddNode(NodeKind::UnusedPattern, state.token, state.has_error);
|
|
|
|
// Propagate errors to the parent state so that they can take different
|
|
// actions on invalid patterns.
|
|
if (state.has_error) {
|
|
context.ReturnErrorOnState();
|
|
}
|
|
}
|
|
|
|
} // namespace Carbon::Parse
|