This commit is contained in:
Dhruv Manilawala 2025-12-16 23:42:55 +03:00 committed by GitHub
commit b2bc5c2fec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 61 additions and 16 deletions

View File

@ -681,11 +681,17 @@ reveal_type(change_return_type(int_str)) # revealed: Overload[(x: int) -> str,
# error: [invalid-argument-type] # error: [invalid-argument-type]
reveal_type(change_return_type(str_str)) # revealed: (...) -> str reveal_type(change_return_type(str_str)) # revealed: (...) -> str
# TODO: Both of these shouldn't raise an error # TODO: This should reveal the matching overload instead
# error: [invalid-argument-type]
reveal_type(with_parameters(int_int, 1)) # revealed: Overload[(x: int) -> str, (x: str) -> str] reveal_type(with_parameters(int_int, 1)) # revealed: Overload[(x: int) -> str, (x: str) -> str]
# error: [invalid-argument-type]
reveal_type(with_parameters(int_int, "a")) # revealed: Overload[(x: int) -> str, (x: str) -> str] reveal_type(with_parameters(int_int, "a")) # revealed: Overload[(x: int) -> str, (x: str) -> str]
# error: [invalid-argument-type] "Argument to function `with_parameters` is incorrect: Expected `int`, found `None`"
reveal_type(with_parameters(int_int, None)) # revealed: Overload[(x: int) -> str, (x: str) -> str]
def foo(int_or_str: int | str):
# Argument type expansion leads to matching both overloads.
# TODO: Should this be an error instead?
reveal_type(with_parameters(int_int, int_or_str)) # revealed: Overload[(x: int) -> str, (x: str) -> str]
``` ```
## ParamSpec attribute assignability ## ParamSpec attribute assignability

View File

@ -3313,8 +3313,7 @@ impl<'a, 'db> ArgumentTypeChecker<'a, 'db> {
/// are passed. /// are passed.
/// ///
/// This method returns `false` if the specialization does not contain a mapping for the given /// This method returns `false` if the specialization does not contain a mapping for the given
/// `paramspec`, contains an invalid mapping (i.e., not a `Callable` of kind `ParamSpecValue`) /// `paramspec` or contains an invalid mapping (i.e., not a `Callable` of kind `ParamSpecValue`).
/// or if the value is an overloaded callable.
/// ///
/// For more details, refer to [`Self::try_paramspec_evaluation_at`]. /// For more details, refer to [`Self::try_paramspec_evaluation_at`].
fn evaluate_paramspec_sub_call( fn evaluate_paramspec_sub_call(
@ -3333,10 +3332,10 @@ impl<'a, 'db> ArgumentTypeChecker<'a, 'db> {
return false; return false;
} }
// TODO: Support overloads? let signatures = &callable.signatures(self.db).overloads;
let [signature] = callable.signatures(self.db).overloads.as_slice() else { if signatures.is_empty() {
return false; return false;
}; }
let sub_arguments = if let Some(argument_index) = argument_index { let sub_arguments = if let Some(argument_index) = argument_index {
self.arguments.start_from(argument_index) self.arguments.start_from(argument_index)
@ -3344,21 +3343,61 @@ impl<'a, 'db> ArgumentTypeChecker<'a, 'db> {
CallArguments::none() CallArguments::none()
}; };
// TODO: What should be the `signature_type` here? // Create Bindings with all overloads and perform full overload resolution
let bindings = match Bindings::from(Binding::single(self.signature_type, signature.clone())) let callable_binding =
CallableBinding::from_overloads(self.signature_type, signatures.iter().cloned());
let bindings = match Bindings::from(callable_binding)
.match_parameters(self.db, &sub_arguments) .match_parameters(self.db, &sub_arguments)
.check_types(self.db, &sub_arguments, self.call_expression_tcx, &[]) .check_types(self.db, &sub_arguments, self.call_expression_tcx, &[])
{ {
Ok(bindings) => Box::new(bindings), Ok(bindings) => bindings,
Err(CallError(_, bindings)) => bindings, Err(CallError(_, bindings)) => *bindings,
}; };
// SAFETY: `bindings` was created from a single binding above. // SAFETY: `bindings` was created from a single `CallableBinding` above.
let [binding] = bindings.single_element().unwrap().overloads.as_slice() else { let Some(callable_binding) = bindings.single_element() else {
unreachable!("ParamSpec sub-call should only contain a single binding"); unreachable!("ParamSpec sub-call should only contain a single CallableBinding");
}; };
match callable_binding.matching_overload_index() {
MatchingOverloadIndex::None => {
if let [binding] = callable_binding.overloads() {
// This is not an overloaded function, so we can propagate its errors
// to the outer bindings.
self.errors.extend(binding.errors.iter().cloned()); self.errors.extend(binding.errors.iter().cloned());
} else {
let index = callable_binding
.matching_overload_before_type_checking
.unwrap_or(0);
// TODO: We should also update the specialization for the `ParamSpec` to reflect
// the matching overload here.
self.errors
.extend(callable_binding.overloads()[index].errors.iter().cloned());
}
}
MatchingOverloadIndex::Single(index) => {
// TODO: We should also update the specialization for the `ParamSpec` to reflect the
// matching overload here.
self.errors
.extend(callable_binding.overloads()[index].errors.iter().cloned());
}
MatchingOverloadIndex::Multiple(_) => {
if !matches!(
callable_binding.overload_call_return_type,
Some(OverloadCallReturnType::ArgumentTypeExpansion(_))
) {
self.errors.extend(
callable_binding
.overloads()
.first()
.unwrap()
.errors
.iter()
.cloned(),
);
}
}
}
true true
} }