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

Unified Diff: lib/src/command/build.dart

Issue 2256623003: Fix more strong mode errors and warnings. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
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/src/barback/web_socket_api.dart ('k') | lib/src/flutter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/command/build.dart
diff --git a/lib/src/command/build.dart b/lib/src/command/build.dart
index b4457a5651bd9810d4c2be8050817b3bf114b948..6ed2c123902bc159ebdbdb22a6bcccf48b220673 100644
--- a/lib/src/command/build.dart
+++ b/lib/src/command/build.dart
@@ -87,8 +87,8 @@ class BuildCommand extends BarbackCommand {
(entry) => logJson.add(_logEntryToJson(entry)));
}
- var assets = await log.progress("Building ${entrypoint.root.name}",
- () async {
+ var assets = await log.progress/*<AssetSet>*/(
+ "Building ${entrypoint.root.name}", () async {
// Register all of the build directories.
// TODO(rnystrom): We don't actually need to bind servers for these, we
// just need to add them to barback's sources. Add support to
« no previous file with comments | « lib/src/barback/web_socket_api.dart ('k') | lib/src/flutter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698