public bool Equals(ErrorPositionInfo other)
 {
     return(LineNumber == other.LineNumber);
 }
 public ErrorViewModel(ErrorType type, string message, ErrorPositionInfo position)
 {
     Type     = type;
     Message  = message;
     Position = position;
 }