From ea8ff1da838be5c78bb6e8f059ffde8f71903296 Mon Sep 17 00:00:00 2001 From: yarashevich_kv Date: Fri, 16 May 2025 10:13:59 +0300 Subject: [PATCH] fix: support passing params when resolving dependency recursively in parent scope. --- cherrypick/lib/src/scope.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cherrypick/lib/src/scope.dart b/cherrypick/lib/src/scope.dart index 575f9e7..ceaeccd 100644 --- a/cherrypick/lib/src/scope.dart +++ b/cherrypick/lib/src/scope.dart @@ -130,6 +130,6 @@ class Scope { } // 2 Поиск зависимостей в родительском скоупе - return _parentScope?.tryResolve(named: named); + return _parentScope?.tryResolve(named: named, params: params); } }