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

Unified Diff: pkg/analyzer/tool/summary/stats.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/tool/summary/stats.dart
diff --git a/pkg/analyzer/tool/summary/stats.dart b/pkg/analyzer/tool/summary/stats.dart
index da524a0547535ac8871609d2c5dea928926b9a95..b8f5dd7de2634b7a829edeabf1dcf8eaaa05af31 100644
--- a/pkg/analyzer/tool/summary/stats.dart
+++ b/pkg/analyzer/tool/summary/stats.dart
@@ -24,8 +24,8 @@ main(List<String> args) {
String inputFilePath = args[0];
// Read the input.
- SdkBundle bundle =
- new SdkBundle.fromBuffer(new File(inputFilePath).readAsBytesSync());
+ PackageBundle bundle =
+ new PackageBundle.fromBuffer(new File(inputFilePath).readAsBytesSync());
// Compute and output stats.
Stats stats = new Stats();

Powered by Google App Engine
This is Rietveld 408576698