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

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

Issue 807833002: Revert "Make stdout/stderr async" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove console and fix some issues Created 6 years 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
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 97dae37f80324763178b5691594d56a8a09b1e9f..7ce6203cb83db6859559024b0b880403eaecdd80 100644
--- a/sdk/lib/_internal/compiler/js_lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/js_lib/io_patch.dart
@@ -491,15 +491,15 @@ class Stdin {
@patch
class Stdout {
@patch
- bool get hasTerminal {
+ bool _hasTerminal(int fd) {
throw new UnsupportedError("Stdout.hasTerminal");
}
@patch
- int get terminalColumns {
+ int _terminalColumns(int fd) {
throw new UnsupportedError("Stdout.terminalColumns");
}
@patch
- int get terminalLines {
+ int _terminalLines(int fd) {
throw new UnsupportedError("Stdout.terminalLines");
}
}
« no previous file with comments | « runtime/bin/stdio_win.cc ('k') | sdk/lib/io/console.dart » ('j') | sdk/lib/io/stdio.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698