| 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 b8158c2410541dbf17867ca6aef40184a778694d..802b06516688bccbc4e1e871383d3dcd3e4071fe 100644
|
| --- a/pkg/analyzer/lib/src/context/context.dart
|
| +++ b/pkg/analyzer/lib/src/context/context.dart
|
| @@ -315,23 +315,6 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| List<AnalysisTarget> get priorityTargets => prioritySources;
|
|
|
| @override
|
| - List<Source> get refactoringUnsafeSources {
|
| - // TODO(brianwilkerson) Implement this.
|
| - List<Source> sources = new List<Source>();
|
| -// MapIterator<AnalysisTarget, cache.CacheEntry> iterator = _cache.iterator();
|
| -// while (iterator.moveNext()) {
|
| -// cache.CacheEntry entry = iterator.value;
|
| -// AnalysisTarget target = iterator.key;
|
| -// if (target is Source &&
|
| -// !target.isInSystemLibrary &&
|
| -// !entry.isRefactoringSafe) {
|
| -// sources.add(target);
|
| -// }
|
| -// }
|
| - return sources;
|
| - }
|
| -
|
| - @override
|
| SourceFactory get sourceFactory => _sourceFactory;
|
|
|
| @override
|
|
|