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

Unified Diff: runtime/bin/socket_patch.dart

Issue 13787003: Wrap stdout/stderr/stdin to only expose the relevant methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « no previous file | runtime/bin/stdio_patch.dart » ('j') | sdk/lib/io/stdio.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/socket_patch.dart
diff --git a/runtime/bin/socket_patch.dart b/runtime/bin/socket_patch.dart
index cb289e88459a478fc707cc4782c1817c4e2c35df..2a805bb7365508bd2c12bd25f874d5795f406865 100644
--- a/runtime/bin/socket_patch.dart
+++ b/runtime/bin/socket_patch.dart
@@ -813,7 +813,7 @@ class _Socket extends Stream<List<int>> implements Socket {
void writeCharCode(int charCode) => _sink.writeCharCode(charCode);
- void writeAll(Iterable objects) => _sink.writeAll(objects);
+ void writeAll(Iterable objects, [sep = ""]) => _sink.writeAll(objects, sep);
void writeBytes(List<int> bytes) => _sink.writeBytes(bytes);
« no previous file with comments | « no previous file | runtime/bin/stdio_patch.dart » ('j') | sdk/lib/io/stdio.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698