| 12345678910111213141516171819202122232425262728293031323334353637 |
- // 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.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
|