Merge pull request #6 from pese-git/fix/resolve_with_params

fix: support passing params when resolving dependency recursively in …
This commit is contained in:
Sergey Penkovsky
2025-05-16 12:43:42 +03:00
committed by GitHub

View File

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