Compare commits

...

2 Commits

1 changed files with 11 additions and 10 deletions

View File

@ -551,17 +551,18 @@ impl InnerResolver {
let constructor_ty = pyid_to_def let constructor_ty = pyid_to_def
.get(&py_obj_id) .get(&py_obj_id)
.and_then(|def_id| { .and_then(|def_id| {
defs.iter() defs
.find_map(|def| { .iter()
if let TopLevelDef::Class { .find_map(|def| {
object_id, methods, constructor, .. if let TopLevelDef::Class {
} = &*def.read() { object_id, methods, constructor, ..
if object_id == def_id && constructor.is_some() && methods.iter().any(|(s, _, _)| s == &"__init__".into()) { } = &*def.read() {
return constructor.clone(); if object_id == def_id && constructor.is_some() && methods.iter().any(|(s, _, _)| s == &"__init__".into()) {
} return constructor.clone();
} }
None }
}) None
})
}); });
if let Some(ty) = constructor_ty { if let Some(ty) = constructor_ty {