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

Unified Diff: sdk/lib/_internal/compiler/js_lib/io_patch.dart

Issue 850333002: Revert "Revert "Make stdout/stderr async"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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/stdio_win.cc ('k') | sdk/lib/io/console.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/js_lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/js_lib/io_patch.dart b/sdk/lib/_internal/compiler/js_lib/io_patch.dart
index b6400f3c69350ea57f4f9f39f6fdc8cd208df3e5..c2c218a05442e76fd61515c59255c546be4d8619 100644
--- a/sdk/lib/_internal/compiler/js_lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/js_lib/io_patch.dart
@@ -495,15 +495,15 @@ class Stdin {
@patch
class Stdout {
@patch
- bool _hasTerminal(int fd) {
+ bool get hasTerminal {
throw new UnsupportedError("Stdout.hasTerminal");
}
@patch
- int _terminalColumns(int fd) {
+ int get terminalColumns {
throw new UnsupportedError("Stdout.terminalColumns");
}
@patch
- int _terminalLines(int fd) {
+ int get terminalLines {
throw new UnsupportedError("Stdout.terminalLines");
}
}
« no previous file with comments | « runtime/bin/stdio_win.cc ('k') | sdk/lib/io/console.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698