Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(566)

Unified Diff: lib/src/analyzer/context.dart

Issue 2289263004: Remove deprecated code (Closed)
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/js/legacy/dart_sdk.js ('k') | pubspec.lock » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/analyzer/context.dart
diff --git a/lib/src/analyzer/context.dart b/lib/src/analyzer/context.dart
index 61b62d470db28806b9c22132f955944a4f55c7c7..b70edeae5a201b0c2cdd715fa5d29d499dca743c 100644
--- a/lib/src/analyzer/context.dart
+++ b/lib/src/analyzer/context.dart
@@ -22,10 +22,7 @@ import 'package:analyzer/src/generated/source_io.dart'
SourceFactory,
UriResolver;
import 'package:analyzer/src/summary/package_bundle_reader.dart'
- show
- InSummaryPackageUriResolver,
- InputPackagesResultProvider,
- SummaryDataStore;
+ show InSummaryUriResolver, InputPackagesResultProvider, SummaryDataStore;
import 'package:analyzer/src/summary/summary_sdk.dart' show SummaryBasedDartSdk;
import 'package:cli_util/cli_util.dart' show getSdkDir;
import 'package:path/path.dart' as path;
@@ -166,7 +163,7 @@ SourceFactory _createSourceFactory(AnalyzerOptions options,
}
resolvers.add(sdkResolver);
if (summaryData != null) {
- resolvers.add(new InSummaryPackageUriResolver(summaryData));
+ resolvers.add(new InSummaryUriResolver(resourceProvider, summaryData));
}
if (fileResolvers == null) fileResolvers = createFileResolvers(options);
« no previous file with comments | « lib/js/legacy/dart_sdk.js ('k') | pubspec.lock » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698