Skip to content

Commit

Permalink
Восстановление теста ПроверитьРекурсивныйВызовВыполнить и проверка те…
Browse files Browse the repository at this point in the history
…ста ПроверитьРаботоспособностьВПодключенныхСценариях
  • Loading branch information
EvilBeaver committed Oct 19, 2024
1 parent dd59f9f commit 44709af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScriptEngine/Machine/RuntimeScopes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class RuntimeScopes : IReadOnlyList<AttachedContext>

public RuntimeScopes(IReadOnlyList<AttachedContext> outerScopes, AttachedContext innerScope)
{
_outerScopes = outerScopes.Select(x => new AttachedContext(x.Instance)).ToList();
_outerScopes = outerScopes;
_innerScope = innerScope;

_outerScopeLast = _outerScopes.Count - 1;
Expand Down

0 comments on commit 44709af

Please sign in to comment.