Chromium Code Reviews

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/server.dart

Issue 177243014: Report AssetNotFound errors for the correct asset. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/barback/server.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/server.dart b/sdk/lib/_internal/pub/lib/src/barback/server.dart
index f5fe5a10155b93c36129b4fe1eb447915b04241c..a324ecbf96ccf5ba187d4e4d53fcf5d0d8a696de 100644
--- a/sdk/lib/_internal/pub/lib/src/barback/server.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback/server.dart
@@ -131,6 +131,10 @@ class BarbackServer {
request.response.statusCode = 302;
request.response.headers.add('location', '${request.uri}/');
request.response.close();
+ }).catchError((newError, newTrace) {
+ // If we find neither the original file or the index, we should report
+ // the error about the original to the user.
+ throw newError is AssetNotFoundException ? error : newError;
});
}).catchError((error, trace) {
if (error is! AssetNotFoundException) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine