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

Unified Diff: pkg/analyzer/lib/src/summary/summary_sdk.dart

Issue 1725913002: Add file hashes to SdkBundle; rename to PackageBundle. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
Index: pkg/analyzer/lib/src/summary/summary_sdk.dart
diff --git a/pkg/analyzer/lib/src/summary/summary_sdk.dart b/pkg/analyzer/lib/src/summary/summary_sdk.dart
index 223d66afef0ee4568672daded774e9ef14a69a1c..ad422cafca68cc8fa486eaf6e260ba904f514629 100644
--- a/pkg/analyzer/lib/src/summary/summary_sdk.dart
+++ b/pkg/analyzer/lib/src/summary/summary_sdk.dart
@@ -24,7 +24,7 @@ import 'package:analyzer/task/model.dart'
class SdkSummaryResultProvider implements SummaryResultProvider {
final InternalAnalysisContext context;
- final SdkBundle bundle;
+ final PackageBundle bundle;
final SummaryTypeProvider typeProvider = new SummaryTypeProvider();
@override
@@ -135,7 +135,7 @@ class SdkSummaryResultProvider implements SummaryResultProvider {
* The implementation of [SummaryResynthesizer] for Dart SDK.
*/
class SdkSummaryResynthesizer extends SummaryResynthesizer {
- final SdkBundle bundle;
+ final PackageBundle bundle;
final Map<String, UnlinkedUnit> unlinkedSummaries = <String, UnlinkedUnit>{};
final Map<String, LinkedLibrary> linkedSummaries = <String, LinkedLibrary>{};

Powered by Google App Engine
This is Rietveld 408576698