sendAnalysisErrors method

void sendAnalysisErrors(
  1. Iterable<AnalysisError> errors
)

Implementation

void sendAnalysisErrors(
  Iterable<plugin.AnalysisError> errors,
) {
  channel.sendNotification(plugin.AnalysisErrorsParams(
    analysisResult.path,
    errors.toList(),
  ).toNotification());
}