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

Unified Diff: runtime/bin/socket_stream_impl.dart

Issue 10872033: Change getters syntax in dart:io library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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_impl.dart ('k') | runtime/bin/stdio.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/socket_stream_impl.dart
diff --git a/runtime/bin/socket_stream_impl.dart b/runtime/bin/socket_stream_impl.dart
index 22d3f73b1e07d1cd73702d0c6bd12c1e81fb7be4..901efa770fa53ad660aa91f1fa3d1697f80e2a85 100644
--- a/runtime/bin/socket_stream_impl.dart
+++ b/runtime/bin/socket_stream_impl.dart
@@ -55,7 +55,7 @@ class _SocketInputStream implements SocketInputStream {
}
}
- bool get closed() => _closed;
+ bool get closed => _closed;
void set onData(void callback()) {
_socket._onData = callback;
@@ -136,7 +136,7 @@ class _SocketOutputStream
_closed = true;
}
- bool get closed() => _closed;
+ bool get closed => _closed;
void set onNoPendingWrites(void callback()) {
_onNoPendingWrites = callback;
« no previous file with comments | « runtime/bin/socket_impl.dart ('k') | runtime/bin/stdio.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698