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

Unified Diff: runtime/bin/process_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/process.dart ('k') | runtime/bin/socket.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process_impl.dart
diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart
index 1016cb7015ae61966b4062ee9a17d88315e10b60..7c3728770085616019b5aaa24c24ead9e566e978 100644
--- a/runtime/bin/process_impl.dart
+++ b/runtime/bin/process_impl.dart
@@ -200,21 +200,21 @@ class _Process extends Process {
Socket exitHandler,
_ProcessStartStatus status) native "Process_Start";
- InputStream get stdout() {
+ InputStream get stdout {
if (_closed) {
throw new ProcessException("Process closed");
}
return _in.inputStream;
}
- InputStream get stderr() {
+ InputStream get stderr {
if (_closed) {
throw new ProcessException("Process closed");
}
return _err.inputStream;
}
- OutputStream get stdin() {
+ OutputStream get stdin {
if (_closed) {
throw new ProcessException("Process closed");
}
@@ -376,7 +376,7 @@ class _NonInteractiveProcess {
}
}
- Future<ProcessResult> get _result() => _completer.future;
+ Future<ProcessResult> get _result => _completer.future;
Completer<ProcessResult> _completer;
Process _process;
« no previous file with comments | « runtime/bin/process.dart ('k') | runtime/bin/socket.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698