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

Unified Diff: runtime/bin/stdio.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_stream_impl.dart ('k') | runtime/bin/stream_util.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/stdio.dart
diff --git a/runtime/bin/stdio.dart b/runtime/bin/stdio.dart
index d0222cb0329c4dfc36cf79fde13c310fc3c27cb8..7e5cf7ebebd417fef22d0ee99ca1366364f50226 100644
--- a/runtime/bin/stdio.dart
+++ b/runtime/bin/stdio.dart
@@ -47,7 +47,7 @@ OutputStream _getStdioOutputStream(int fd) {
}
-InputStream get stdin() {
+InputStream get stdin {
if (_stdin == null) {
_stdin = _getStdioInputStream();
}
@@ -55,7 +55,7 @@ InputStream get stdin() {
}
-OutputStream get stdout() {
+OutputStream get stdout {
if (_stdout == null) {
_stdout = _getStdioOutputStream(1);
}
@@ -63,7 +63,7 @@ OutputStream get stdout() {
}
-OutputStream get stderr() {
+OutputStream get stderr {
if (_stderr == null) {
_stderr = _getStdioOutputStream(2);
}
« no previous file with comments | « runtime/bin/socket_stream_impl.dart ('k') | runtime/bin/stream_util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698