Files
carbon-lang/toolchain/parse/handle_declaration_scope_loop.cpp
T
Jon Ross-PerkinsandRichard Smith c9458fe30a Add parse support for 'import', brush up 'package' a little. (#3347)
This detects ordering issues with the `package` and `import` statements.
`library` is changed from package-specific to instead be generic between
the two, since structurally it's non-specific.

The next step would be to start exposing the results for the driver to
make ordering decisions for checking. That'll involve further
modifications to this code, but this felt like a reasonable change point
because it's the extent of the parser enforcement, and still causes
significant refactoring.

---------

Co-authored-by: Richard Smith <richard@metafoo.co.uk>
2023-10-31 21:26:49 +00:00

97 lines
3.4 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"
namespace Carbon::Parse {
// Handles an unrecognized declaration, adding an error node.
static auto HandleUnrecognizedDeclaration(Context& context) -> void {
CARBON_DIAGNOSTIC(UnrecognizedDeclaration, Error,
"Unrecognized declaration introducer.");
context.emitter().Emit(*context.position(), UnrecognizedDeclaration);
auto cursor = *context.position();
auto semi = context.SkipPastLikelyEnd(cursor);
// Locate the EmptyDeclaration at the semi when found, but use the
// original cursor location for an error when not.
context.AddLeafNode(NodeKind::EmptyDeclaration, semi ? *semi : cursor,
/*has_error=*/true);
}
auto HandleDeclarationScopeLoop(Context& context) -> void {
// This maintains the current state unless we're at the end of the scope.
switch (auto position_kind = context.PositionKind()) {
case Lex::TokenKind::CloseCurlyBrace:
case Lex::TokenKind::EndOfFile: {
// This is the end of the scope, so the loop state ends.
context.PopAndDiscardState();
break;
}
// `import` and `package` manage their packaging state.
case Lex::TokenKind::Import: {
context.PushState(State::Import);
break;
}
case Lex::TokenKind::Package: {
context.PushState(State::Package);
break;
}
default:
// Because a non-packaging keyword was encountered, packaging is complete.
// Misplaced packaging keywords may lead to this being re-triggered.
if (context.packaging_state() !=
Context::PackagingState::AfterNonPackagingDeclaration) {
if (!context.first_non_packaging_token().is_valid()) {
context.set_first_non_packaging_token(*context.position());
}
context.set_packaging_state(
Context::PackagingState::AfterNonPackagingDeclaration);
}
switch (position_kind) {
// Remaining keywords are only valid after imports are complete, and
// so all result in a `set_packaging_state` call. Note, this may not
// always be necessary but is probably cheaper than validating.
case Lex::TokenKind::Class: {
context.PushState(State::TypeIntroducerAsClass);
break;
}
case Lex::TokenKind::Constraint: {
context.PushState(State::TypeIntroducerAsNamedConstraint);
break;
}
case Lex::TokenKind::Fn: {
context.PushState(State::FunctionIntroducer);
break;
}
case Lex::TokenKind::Interface: {
context.PushState(State::TypeIntroducerAsInterface);
break;
}
case Lex::TokenKind::Namespace: {
context.PushState(State::Namespace);
break;
}
case Lex::TokenKind::Semi: {
context.AddLeafNode(NodeKind::EmptyDeclaration, context.Consume());
break;
}
case Lex::TokenKind::Var: {
context.PushState(State::VarAsSemicolon);
break;
}
case Lex::TokenKind::Let: {
context.PushState(State::Let);
break;
}
default: {
HandleUnrecognizedDeclaration(context);
break;
}
}
}
}
} // namespace Carbon::Parse