mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This provides `export import` logic in lex, parse, and check; `export name` logic is only in lex and parse, not check. I think with `export name` I'm going to need to modify import_ref and some consolidation logic, whereas `export import` seems feasible to keep as primarily import logic. Given the implementations were looking like they'd diverge more substantially, I thought it'd be helpful to cut the PR here.
283 lines
10 KiB
C++
283 lines
10 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/lex/token_kind.h"
|
|
#include "toolchain/parse/context.h"
|
|
#include "toolchain/parse/node_kind.h"
|
|
|
|
namespace Carbon::Parse {
|
|
|
|
// Handles positions which are end of scope and packaging declarations. Returns
|
|
// true when either applies. When the position is neither, returns false, and
|
|
// may still update packaging state.
|
|
static auto TryHandleEndOrPackagingDecl(Context& context) -> bool {
|
|
switch (context.PositionKind()) {
|
|
case Lex::TokenKind::CloseCurlyBrace:
|
|
case Lex::TokenKind::FileEnd: {
|
|
// This is the end of the scope, so the loop state ends.
|
|
context.PopAndDiscardState();
|
|
return true;
|
|
}
|
|
// Packaging-related keywords manage their packaging state.
|
|
case Lex::TokenKind::Export: {
|
|
context.PushState(State::Export);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Import: {
|
|
context.PushState(State::Import);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Library: {
|
|
context.PushState(State::Library);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Package: {
|
|
context.PushState(State::Package);
|
|
return true;
|
|
}
|
|
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::AfterNonPackagingDecl) {
|
|
if (!context.first_non_packaging_token().is_valid()) {
|
|
context.set_first_non_packaging_token(*context.position());
|
|
}
|
|
context.set_packaging_state(
|
|
Context::PackagingState::AfterNonPackagingDecl);
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Finishes an invalid declaration, skipping past its end.
|
|
static auto FinishAndSkipInvalidDecl(Context& context, int32_t subtree_start)
|
|
-> void {
|
|
auto cursor = *context.position();
|
|
// Output an invalid parse subtree including everything up to the next `;`
|
|
// or end of line.
|
|
context.ReplacePlaceholderNode(subtree_start, NodeKind::InvalidParseStart,
|
|
cursor, /*has_error=*/true);
|
|
context.AddNode(NodeKind::InvalidParseSubtree,
|
|
context.SkipPastLikelyEnd(cursor), subtree_start,
|
|
/*has_error=*/true);
|
|
}
|
|
|
|
// Prints a diagnostic and calls FinishAndSkipInvalidDecl.
|
|
static auto HandleUnrecognizedDecl(Context& context, int32_t subtree_start)
|
|
-> void {
|
|
CARBON_DIAGNOSTIC(UnrecognizedDecl, Error,
|
|
"Unrecognized declaration introducer.");
|
|
context.emitter().Emit(*context.position(), UnrecognizedDecl);
|
|
FinishAndSkipInvalidDecl(context, subtree_start);
|
|
}
|
|
|
|
// Replaces the introducer placeholder node, and pushes the introducer state for
|
|
// processing.
|
|
static auto ApplyIntroducer(Context& context, Context::StateStackEntry state,
|
|
NodeKind introducer_kind, State next_state)
|
|
-> void {
|
|
context.ReplacePlaceholderNode(state.subtree_start, introducer_kind,
|
|
context.Consume());
|
|
// Reuse state here to retain its `subtree_start`.
|
|
context.PushState(state, next_state);
|
|
}
|
|
|
|
// Handles `base` as a declaration.
|
|
static auto HandleBaseAsDecl(Context& context, Context::StateStackEntry state)
|
|
-> void {
|
|
// At this point, `base` has been ruled out as a modifier (`base class`). If
|
|
// it's followed by a colon, it's an introducer (`extend base: BaseType;`).
|
|
// Otherwise it's an error.
|
|
if (context.PositionIs(Lex::TokenKind::Colon, Lookahead::NextToken)) {
|
|
ApplyIntroducer(context, state, NodeKind::BaseIntroducer, State::BaseDecl);
|
|
context.PushState(State::Expr);
|
|
context.AddLeafNode(NodeKind::BaseColon, context.Consume());
|
|
} else {
|
|
// TODO: If the next token isn't a colon or `class`, try to recover
|
|
// based on whether we're in a class, whether we have an `extend`
|
|
// modifier, and the following tokens.
|
|
context.AddLeafNode(NodeKind::InvalidParse, context.Consume(),
|
|
/*has_error=*/true);
|
|
CARBON_DIAGNOSTIC(ExpectedAfterBase, Error,
|
|
"`class` or `:` expected after `base`.");
|
|
context.emitter().Emit(*context.position(), ExpectedAfterBase);
|
|
FinishAndSkipInvalidDecl(context, state.subtree_start);
|
|
}
|
|
}
|
|
|
|
// Returns true if the current position is a declaration. If we see a
|
|
// declaration introducer keyword token, replace the placeholder node and switch
|
|
// to a state to parse the rest of the declaration.
|
|
static auto TryHandleAsDecl(Context& context, Context::StateStackEntry state,
|
|
bool saw_modifier) -> bool {
|
|
switch (context.PositionKind()) {
|
|
case Lex::TokenKind::Adapt: {
|
|
ApplyIntroducer(context, state, NodeKind::AdaptIntroducer,
|
|
State::AdaptDecl);
|
|
context.PushState(State::Expr);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Alias: {
|
|
ApplyIntroducer(context, state, NodeKind::AliasIntroducer, State::Alias);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Base: {
|
|
HandleBaseAsDecl(context, state);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Choice: {
|
|
ApplyIntroducer(context, state, NodeKind::ChoiceIntroducer,
|
|
State::ChoiceIntroducer);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Class: {
|
|
ApplyIntroducer(context, state, NodeKind::ClassIntroducer,
|
|
State::TypeAfterIntroducerAsClass);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Constraint: {
|
|
ApplyIntroducer(context, state, NodeKind::NamedConstraintIntroducer,
|
|
State::TypeAfterIntroducerAsNamedConstraint);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Extend: {
|
|
// TODO: Treat this `extend` token as a declaration introducer
|
|
HandleUnrecognizedDecl(context, state.subtree_start);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Fn: {
|
|
ApplyIntroducer(context, state, NodeKind::FunctionIntroducer,
|
|
State::FunctionIntroducer);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Impl: {
|
|
ApplyIntroducer(context, state, NodeKind::ImplIntroducer,
|
|
State::ImplAfterIntroducer);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Interface: {
|
|
ApplyIntroducer(context, state, NodeKind::InterfaceIntroducer,
|
|
State::TypeAfterIntroducerAsInterface);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Namespace: {
|
|
ApplyIntroducer(context, state, NodeKind::NamespaceStart,
|
|
State::Namespace);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Let: {
|
|
ApplyIntroducer(context, state, NodeKind::LetIntroducer, State::Let);
|
|
return true;
|
|
}
|
|
case Lex::TokenKind::Var: {
|
|
ApplyIntroducer(context, state, NodeKind::VariableIntroducer,
|
|
State::VarAsDecl);
|
|
return true;
|
|
}
|
|
|
|
case Lex::TokenKind::Semi: {
|
|
if (saw_modifier) {
|
|
// Modifiers require an introducer keyword.
|
|
HandleUnrecognizedDecl(context, state.subtree_start);
|
|
} else {
|
|
context.ReplacePlaceholderNode(state.subtree_start, NodeKind::EmptyDecl,
|
|
context.Consume());
|
|
}
|
|
return true;
|
|
}
|
|
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Returns true if position_kind could be either an introducer or modifier, and
|
|
// should be treated as an introducer.
|
|
static auto ResolveAmbiguousTokenAsDeclaration(Context& context,
|
|
Lex::TokenKind position_kind)
|
|
-> bool {
|
|
switch (position_kind) {
|
|
case Lex::TokenKind::Base:
|
|
case Lex::TokenKind::Extend:
|
|
case Lex::TokenKind::Impl:
|
|
// This is an ambiguous token, so now we check what the next token is.
|
|
|
|
// We use the macro for modifiers, including introducers which are
|
|
// also modifiers (such as `base`). Other introducer tokens need to be
|
|
// added by hand.
|
|
switch (context.PositionKind(Lookahead::NextToken)) {
|
|
case Lex::TokenKind::Adapt:
|
|
case Lex::TokenKind::Alias:
|
|
case Lex::TokenKind::Class:
|
|
case Lex::TokenKind::Constraint:
|
|
case Lex::TokenKind::Fn:
|
|
case Lex::TokenKind::Interface:
|
|
case Lex::TokenKind::Let:
|
|
case Lex::TokenKind::Namespace:
|
|
case Lex::TokenKind::Var:
|
|
#define CARBON_PARSE_NODE_KIND(...)
|
|
#define CARBON_PARSE_NODE_KIND_TOKEN_MODIFIER(Name, ...) \
|
|
case Lex::TokenKind::Name:
|
|
#include "toolchain/parse/node_kind.def"
|
|
|
|
return false;
|
|
|
|
default:
|
|
return true;
|
|
}
|
|
break;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Returns true if the current position is a modifier, handling it if so.
|
|
static auto TryHandleAsModifier(Context& context) -> bool {
|
|
auto position_kind = context.PositionKind();
|
|
if (ResolveAmbiguousTokenAsDeclaration(context, position_kind)) {
|
|
return false;
|
|
}
|
|
|
|
switch (position_kind) {
|
|
#define CARBON_PARSE_NODE_KIND(...)
|
|
#define CARBON_PARSE_NODE_KIND_TOKEN_MODIFIER(Name, ...) \
|
|
case Lex::TokenKind::Name: \
|
|
context.AddLeafNode(NodeKind::Name##Modifier, context.Consume()); \
|
|
return true;
|
|
#include "toolchain/parse/node_kind.def"
|
|
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
auto HandleDeclScopeLoop(Context& context) -> void {
|
|
// This maintains the current state unless we're at the end of the scope.
|
|
|
|
if (TryHandleEndOrPackagingDecl(context)) {
|
|
return;
|
|
}
|
|
|
|
// Create a state with the correct starting position, with a dummy kind
|
|
// until we see the declaration's introducer.
|
|
Context::StateStackEntry state{.state = State::Invalid,
|
|
.token = *context.position(),
|
|
.subtree_start = context.tree().size()};
|
|
|
|
// Add a placeholder node, to be replaced by the declaration introducer once
|
|
// it is found.
|
|
context.AddLeafNode(NodeKind::Placeholder, *context.position());
|
|
|
|
bool saw_modifier = false;
|
|
while (TryHandleAsModifier(context)) {
|
|
saw_modifier = true;
|
|
}
|
|
if (!TryHandleAsDecl(context, state, saw_modifier)) {
|
|
HandleUnrecognizedDecl(context, state.subtree_start);
|
|
}
|
|
}
|
|
|
|
} // namespace Carbon::Parse
|