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

Unified Diff: pkg/barback/lib/src/asset_cascade.dart

Issue 48483002: Remove deprecated parts of dart:async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove runAsync use. Created 7 years, 2 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/barback/lib/src/asset_cascade.dart
diff --git a/pkg/barback/lib/src/asset_cascade.dart b/pkg/barback/lib/src/asset_cascade.dart
index cc9056012be4b7c2dd79ef0ca941970f889ef24e..f3765c1acdf8e5fc502be8fd85b6883fb74f2482 100644
--- a/pkg/barback/lib/src/asset_cascade.dart
+++ b/pkg/barback/lib/src/asset_cascade.dart
@@ -187,8 +187,8 @@ class AssetCascade {
_loadingSources.remove(id);
}).then((asset) {
var controller = _sourceControllerMap[id].setAvailable(asset);
- }).catchError((error) {
- reportError(new AssetLoadException(id, error));
+ }).catchError((error, stack) {
+ reportError(new AssetLoadException(id, error, stack));
// TODO(nweiz): propagate error information through asset nodes.
_sourceControllerMap.remove(id).setRemoved();

Powered by Google App Engine
This is Rietveld 408576698