FILE_COMPARATOR property

  1. @Deprecated('Not used')
Comparator<AnalysisError> FILE_COMPARATOR
getter/setter pair

A Comparator that sorts by the name of the file that the AnalysisError was found.

Implementation

@Deprecated('Not used')
static Comparator<AnalysisError> FILE_COMPARATOR =
    (AnalysisError o1, AnalysisError o2) =>
        o1.source.shortName.compareTo(o2.source.shortName);