| 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");
|
| }
|
| }
|
|
|