mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Implements proposal #7016: `self` moves from the deduced implicit list (`fn F[self: Self]()`) to the front of the explicit list. Its type may be written explicitly (`fn F(self: Self)`) or omitted, in which case it defaults to `Self` (`fn F(self)`, `fn F(ref self)`); `self` in the implicit list is rejected. Throughout checking, `self` is modeled as the first explicit parameter. Because a method is just a function whose first parameter is `self`, it can also be called as an ordinary function with the receiver passed explicitly (`Type.M(obj, ...)`), not only as `obj.M(...)`. A new `SemIR::CallArgParamPatterns` helper chooses the parameters matched against the explicit arguments, excluding a leading `self` only when it is supplied as a method-call receiver; arity checking, conversion, and generic deduction use it. The resulting SemIR and lowering are unchanged: `self` is still `call_param0`, and witnesses, thunks, and vtables are unaffected. An omitted `self` type is parsed as a `SelfBindingPattern` node with no type expression; checking synthesizes the `Self` type so it behaves exactly like `self: Self`. However, the exact spelling used must match between a forward declaration and a definition, following #3763's rules around declaration matching. Generated functions, thunks, and C++ interop import/export build `self` as the first explicit parameter, and the `self`-type override (e.g. Derived->Base for a virtual override) applies to the explicit `self`. Placement is validated by new diagnostics: `SelfInImplicitParamList`, `SelfNotFirstParam`, and `SelfOutsideParamList`. The benchmark source generator and the documentation adopt the `(self)` shorthand; the prelude, the examples, and the test data are migrated in the following commits. Assisted-by: Claude Code with Claude Opus 4.7 --------- Co-authored-by: josh11b <15258583+josh11b@users.noreply.github.com>
80 lines
3.1 KiB
C++
80 lines
3.1 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 HandlePattern(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
switch (context.PositionKind()) {
|
|
case Lex::TokenKind::OpenParen:
|
|
context.PushStateForPattern(StateKind::PatternListAsTuple,
|
|
state.in_var_pattern, state.in_unused_pattern,
|
|
state.ambient_precedence);
|
|
break;
|
|
case Lex::TokenKind::Var:
|
|
context.PushStateForPattern(StateKind::VariablePattern,
|
|
state.in_var_pattern, state.in_unused_pattern,
|
|
state.ambient_precedence);
|
|
break;
|
|
case Lex::TokenKind::Unused:
|
|
context.PushStateForPattern(StateKind::UnusedPattern,
|
|
state.in_var_pattern, state.in_unused_pattern,
|
|
state.ambient_precedence);
|
|
break;
|
|
case Lex::TokenKind::Template:
|
|
case Lex::TokenKind::Ref:
|
|
// `self` is always a binding, even when its type is omitted (and so is not
|
|
// followed by a `:`).
|
|
case Lex::TokenKind::SelfValueIdentifier:
|
|
context.PushStateForPattern(StateKind::BindingPattern,
|
|
state.in_var_pattern, state.in_unused_pattern,
|
|
state.ambient_precedence);
|
|
break;
|
|
default:
|
|
if (context.PositionKind().is_word() &&
|
|
context.PositionKind(Lookahead::NextToken)
|
|
.is_binding_pattern_operator()) {
|
|
context.PushStateForPattern(
|
|
StateKind::BindingPattern, state.in_var_pattern,
|
|
state.in_unused_pattern, state.ambient_precedence);
|
|
break;
|
|
}
|
|
context.PushState(StateKind::ExprPattern);
|
|
context.PushStateForExpr(state.ambient_precedence);
|
|
break;
|
|
}
|
|
}
|
|
|
|
auto HandleExprPattern(Context& context) -> void {
|
|
auto state = context.PopState();
|
|
|
|
// If we parsed an expression followed by a binding operator, we most likely
|
|
// have a malformed attempt to introduce a binding pattern that we interpreted
|
|
// as an expression pattern, so diagnose that here rather than diagnosing a
|
|
// missing `;` at an outer level.
|
|
if (context.PositionKind().is_binding_pattern_operator()) {
|
|
if (!state.has_error) {
|
|
CARBON_DIAGNOSTIC(ExpectedBindingName, Error,
|
|
"unexpected expression before {0} in binding pattern",
|
|
Lex::TokenKind);
|
|
// TODO: Underline the parsed expression.
|
|
context.emitter().Emit(*context.position(), ExpectedBindingName,
|
|
context.PositionKind());
|
|
state.has_error = true;
|
|
}
|
|
context.Consume();
|
|
// It'd be nice to skip the type expression here too, but we can't determine
|
|
// the end of it.
|
|
}
|
|
|
|
if (state.has_error) {
|
|
context.ReturnErrorOnState();
|
|
}
|
|
}
|
|
|
|
} // namespace Carbon::Parse
|