Better handling of binding when dealing with unknown userdata
This commit is contained in:
@@ -88,10 +88,9 @@ namespace Upsilon.BaseTypes.UserData
|
||||
}
|
||||
}
|
||||
|
||||
public override TypeContainer Type => new CompositeTypeContainer()
|
||||
{
|
||||
Types = new TypeContainer[]{BaseTypes.Type.Number, new TypeContainer(TypeName)}.ToImmutableArray()
|
||||
};
|
||||
public override TypeContainer Type =>
|
||||
new CompositeTypeContainer(new TypeContainer[] {BaseTypes.Type.Number, new TypeContainer(TypeName)}
|
||||
.ToImmutableArray());
|
||||
public override object ToCSharpObject()
|
||||
{
|
||||
return List;
|
||||
|
||||
Reference in New Issue
Block a user