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

Unified Diff: runtime/lib/print_patch.dart

Issue 88783002: Isolate.spawn{Uri} only reports errors asynchronously. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase Created 7 years 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: runtime/lib/print_patch.dart
diff --git a/runtime/lib/print_patch.dart b/runtime/lib/print_patch.dart
index 186b4fb8ecee7eb7ce6f7752deb1105df4fa55be..da660ba917a166df0ec140b5b26dd5ac9b854dbe 100644
--- a/runtime/lib/print_patch.dart
+++ b/runtime/lib/print_patch.dart
@@ -8,10 +8,15 @@ patch void printToConsole(String line) {
_printClosure(line);
Ivan Posva 2013/12/12 12:11:49 Types mismatch between parameter and print closure
floitsch 2013/12/12 21:08:37 Updated the typedef.
}
-void _unsupportedPrint(Object obj) {
+void _unsupportedPrint(String line) {
Ivan Posva 2013/12/12 12:11:49 This does not match the _PrintClosure type. This
floitsch 2013/12/12 21:08:37 Added comment. It is supposed to get a string.
throw new UnsupportedError("'print' is not supported");
}
+// Ignores printed lines.
+_PrintClosure _nullPrintClosure = (String line) {
Ivan Posva 2013/12/12 12:11:49 ditto (types don't match)
floitsch 2013/12/12 21:08:37 moved to test file.
+ /* do nothing. */
+};
+
// _printClosure can be overwritten by the embedder to supply a different
// print implementation.
_PrintClosure _printClosure = _unsupportedPrint;

Powered by Google App Engine
This is Rietveld 408576698