fix: support passing params when resolving dependency recursively in parent scope.

This commit is contained in:
yarashevich_kv
2025-05-16 10:13:59 +03:00
parent ff55ddb491
commit ea8ff1da83

View File

@@ -130,6 +130,6 @@ class Scope {
}
// 2 Поиск зависимостей в родительском скоупе
return _parentScope?.tryResolve(named: named);
return _parentScope?.tryResolve(named: named, params: params);
}
}