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

Unified Diff: runtime/bin/socket_impl.dart

Issue 8525002: Provide access to stdin, stdout and stderr (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed issue with Dart not stopping Created 9 years, 1 month 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
« runtime/bin/builtin.dart ('K') | « runtime/bin/process_impl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/socket_impl.dart
diff --git a/runtime/bin/socket_impl.dart b/runtime/bin/socket_impl.dart
index e30f414be5614db7820b057958c1e58763259bf8..7b948d124a9d4db4d555581438d2c799edb114f1 100644
--- a/runtime/bin/socket_impl.dart
+++ b/runtime/bin/socket_impl.dart
@@ -256,8 +256,8 @@ class _Socket extends _SocketBase implements Socket {
}
_Socket._internal();
- _Socket._internalInputOnly() : _closedRead = true;
- _Socket._internalOutputOnly() : _closedWrite = true;
+ _Socket._internalReadOnly() : _closedWrite = true;
+ _Socket._internalWriteOnly() : _closedRead = true;
int available() {
if (_id >= 0) {
« runtime/bin/builtin.dart ('K') | « runtime/bin/process_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698