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

Unified Diff: runtime/bin/socket.dart

Issue 9720045: Extend dart:io error handling to all socket functions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 8 years, 9 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 | « runtime/bin/socket.cc ('k') | runtime/bin/socket_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/socket.dart
diff --git a/runtime/bin/socket.dart b/runtime/bin/socket.dart
index bb804716668ab00bb66240a3e852be820b5fdc03..b3a03480fb9e3f9f6f42b98db322af32c6d2e6bd 100644
--- a/runtime/bin/socket.dart
+++ b/runtime/bin/socket.dart
@@ -134,7 +134,7 @@ class SocketIOException implements Exception {
sb.add(" ($osError)");
}
} else if (osError != null) {
- sb.add(": osError");
+ sb.add(": $osError");
}
return sb.toString();
}
« no previous file with comments | « runtime/bin/socket.cc ('k') | runtime/bin/socket_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698