From 4b93302c864b365bb984949f29a9c47255bb1bef Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Wed, 12 Dec 2018 20:43:12 +0100 Subject: [PATCH] Allow setting boundscope --- Upsilon/StandardLibraries/StaticScope.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Upsilon/StandardLibraries/StaticScope.cs b/Upsilon/StandardLibraries/StaticScope.cs index 2b0ebdb..8d8a3be 100644 --- a/Upsilon/StandardLibraries/StaticScope.cs +++ b/Upsilon/StandardLibraries/StaticScope.cs @@ -47,6 +47,7 @@ namespace Upsilon.StandardLibraries _staticBoundScope = boundScope; return _staticBoundScope; } + set => _staticBoundScope = value; } public static (EvaluationScope, BoundScope) CreateStandardLibrary()