Fixes binder assigning values to static read only scope
This commit is contained in:
@@ -10,13 +10,13 @@ namespace UpsilonTests
|
||||
[Collection("collection")]
|
||||
public abstract class TestClass
|
||||
{
|
||||
public Dictionary<string, LuaType> StaticScope { get; }
|
||||
public Dictionary<string, VariableSymbol> BoundScope { get; }
|
||||
public EvaluationScope StaticScope { get; }
|
||||
public BoundScope BoundScope { get; }
|
||||
|
||||
public TestClass(StaticScriptFixture fix)
|
||||
{
|
||||
StaticScope = fix.StaticScope.Variables;
|
||||
BoundScope = fix.BoundScope.Variables;
|
||||
StaticScope = fix.StaticScope;
|
||||
BoundScope = fix.BoundScope;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user