Renamed Boolean to differentiate from system boolean type

This commit is contained in:
2018-11-14 13:10:24 +01:00
parent deefe43d9f
commit d34e5c85c7
5 changed files with 15 additions and 17 deletions

View File

@@ -13,7 +13,7 @@ namespace UpsilonTests
var input = "if true then val = true end";
var script = new Script(input);
Assert.Empty(script.Diagnostics.Messages);
var actual = script.Evaluate<Boolean>();
var actual = script.Evaluate<LuaBoolean>();
Assert.True(actual);
}