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

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

Issue 48993007: Revise barback logging patch. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. 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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/pub_barback_logger.dart ('k') | 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/dart.dart
diff --git a/sdk/lib/_internal/pub/lib/src/dart.dart b/sdk/lib/_internal/pub/lib/src/dart.dart
index e0701a4bffa47dbdbc5d40a13175c3c667ea725a..d183f37e40cbbb65c7ad70aaee6c19ad210af186 100644
--- a/sdk/lib/_internal/pub/lib/src/dart.dart
+++ b/sdk/lib/_internal/pub/lib/src/dart.dart
@@ -57,7 +57,10 @@ Future<String> compile(String entrypoint, {String packageRoot,
path.toUri(entrypoint),
path.toUri(appendSlash(_libPath)),
path.toUri(appendSlash(packageRoot)),
- inputProvider, diagnosticHandler, options);
+ inputProvider, diagnosticHandler, options).then((js) {
+ if (js == null) throw new CompilerException(entrypoint);
+ return js;
+ });
});
}
@@ -175,3 +178,9 @@ class CrossIsolateException implements Exception {
String toString() => "$message\n$stackTrace";
}
+
+/// An exception thrown when dart2js generates compiler errors.
+class CompilerException extends ApplicationException {
+ CompilerException(String entrypoint)
+ : super('Failed to compile "$entrypoint".');
+}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/pub_barback_logger.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698