Skip to content

Commit 44709af

Browse files
committed
Восстановление теста ПроверитьРекурсивныйВызовВыполнить и проверка теста ПроверитьРаботоспособностьВПодключенныхСценариях
1 parent dd59f9f commit 44709af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ScriptEngine/Machine/RuntimeScopes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RuntimeScopes : IReadOnlyList<AttachedContext>
2525

2626
public RuntimeScopes(IReadOnlyList<AttachedContext> outerScopes, AttachedContext innerScope)
2727
{
28-
_outerScopes = outerScopes.Select(x => new AttachedContext(x.Instance)).ToList();
28+
_outerScopes = outerScopes;
2929
_innerScope = innerScope;
3030

3131
_outerScopeLast = _outerScopes.Count - 1;

0 commit comments

Comments
 (0)