Better handling of getting valid bound type.

This commit is contained in:
Deukhoofd 2019-02-19 12:59:07 +01:00
parent 18ca112624
commit 685cae2dc6
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
4 changed files with 14 additions and 8 deletions

View File

@ -1,6 +1,5 @@
using System;
using System.Collections.Immutable;
using System.Diagnostics;
using Upsilon.BoundTypes;
namespace Upsilon.BaseTypes

View File

@ -61,7 +61,12 @@ namespace Upsilon.BoundTypes
}
var bDef = TypeDefinitions.FirstOrDefault(x =>
x.Value.ValidInternalTypes.Any(validType => validType.IsAssignableFrom(type)));
{
var first = x.Value.ValidInternalTypes.FirstOrDefault();
if (first == null)
return false;
return first.IsAssignableFrom(type);
});
if (!bDef.Equals(default(KeyValuePair<string, BoundTypeDefinition>)))
{
TypeLookup.TryAdd(type, bDef.Key);

View File

@ -44,6 +44,8 @@ namespace Upsilon.BoundTypes
// We don't want the global object type to be returned
if (currentBaseType == typeof(object))
break;
if (currentBaseType == typeof(ValueType))
break;
yield return currentBaseType;
currentBaseType = currentBaseType.BaseType;
}

View File

@ -14,8 +14,8 @@ namespace UpsilonTests.GeneralTests
public void BasicStringVariable()
{
const string input = @"
string = ""test""
return string
str = ""test""
return str
";
var evaluated = Executor.EvaluateScript<string>(input, Options);
Assert.Equal("test", evaluated);
@ -25,8 +25,8 @@ return string
public void StringIndexable()
{
const string input = @"
string = ""test""
return string[3]
str = ""test""
return str[3]
";
var evaluated = Executor.EvaluateScript<string>(input, Options);
Assert.Equal("s", evaluated);
@ -36,8 +36,8 @@ return string[3]
public void StringAddition()
{
const string input = @"
string = ""test"" + ""123""
return string
str = ""test"" + ""123""
return str
";
var evaluated = Executor.EvaluateScript<string>(input, Options);
Assert.Equal("test123", evaluated);