| Index: pkg/analyzer/lib/src/context/context.dart
|
| diff --git a/pkg/analyzer/lib/src/context/context.dart b/pkg/analyzer/lib/src/context/context.dart
|
| index ebf393dc72197d54ca7841a59f6de9efca32ef6f..45f6abbb286a1afc03cca61c85b9a979373193eb 100644
|
| --- a/pkg/analyzer/lib/src/context/context.dart
|
| +++ b/pkg/analyzer/lib/src/context/context.dart
|
| @@ -935,13 +935,7 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
|
|
| @override
|
| List<Source> getSourcesWithFullName(String path) {
|
| - List<Source> sources = <Source>[];
|
| - for (Source source in _cache.sources) {
|
| - if (source.fullName == path) {
|
| - sources.add(source);
|
| - }
|
| - }
|
| - return sources;
|
| + return analysisCache.getSourcesWithFullName(path);
|
| }
|
|
|
| @override
|
|
|