| 123456789101112131415161718192021222324252627282930 |
- // 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 {
- // Handles processing of a type declaration or definition after its introducer.
- static auto HandleTypeAfterIntroducer(Context& context,
- State after_params_state) -> void {
- auto state = context.PopState();
- context.PushState(state, after_params_state);
- context.PushState(State::DeclNameAndParams, state.token);
- }
- auto HandleTypeAfterIntroducerAsClass(Context& context) -> void {
- HandleTypeAfterIntroducer(context, State::DeclOrDefinitionAsClass);
- }
- auto HandleTypeAfterIntroducerAsInterface(Context& context) -> void {
- HandleTypeAfterIntroducer(context, State::DeclOrDefinitionAsInterface);
- }
- auto HandleTypeAfterIntroducerAsNamedConstraint(Context& context) -> void {
- HandleTypeAfterIntroducer(context, State::DeclOrDefinitionAsNamedConstraint);
- }
- } // namespace Carbon::Parse
|