getAnalysisContextCollection method
AnalysisContextCollectionImpl
getAnalysisContextCollection()
Implementation
AnalysisContextCollectionImpl getAnalysisContextCollection(String pubspecPath, List<String> dartFilesPaths) {
return AnalysisContextCollectionImpl(
includedPaths: [
_normalizeAbsolutePath(pubspecPath),
_makePackageSubPath(pubspecPath, 'lib'),
_makePackageSubPath(pubspecPath, 'lib', 'src'),
...dartFilesPaths,
],
);
}