Fixed function parameter type not setting properly when unbound

This commit is contained in:
Deukhoofd 2018-11-30 16:48:38 +01:00
parent 00178cfa82
commit 2a0cce9bac
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ namespace Upsilon.Binder.VariableSymbols
public FunctionParameterSymbol(string name, Type type) : base(name, type, true)
{
_type = type;
}
public FunctionParameterSymbol(string name, BoundTypeDefinition type) : base(name, type.ScriptType, true)

View File

@ -11,7 +11,7 @@ namespace Upsilon.Binder.VariableSymbols
Name = name;
}
public virtual Type Type { get; set; }
public virtual Type Type { get; set; } = Type.Unknown;
public bool Local { get; }
public string Name { get; }
public string[] CommentValue { get; set; }