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); |