Binds Variable Assignment

This commit is contained in:
2018-11-11 20:31:55 +01:00
parent ce92348199
commit ac83dba77f
5 changed files with 61 additions and 8 deletions

View File

@@ -55,6 +55,10 @@ namespace Upsilon
LogError($"No unary operator {text} found for type '{inType}'", eSpan);
}
public void LogCannotConvert(Type actualType, Type expectedType, TextSpan span)
{
LogError($"Cannot convert type '{actualType}' to '{expectedType}'", span);
}
}
public class DiagnosticsMessage