| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of dart.io; | 5 part of dart.io; |
| 6 | 6 |
| 7 const int _STDIO_HANDLE_TYPE_TERMINAL = 0; | 7 const int _STDIO_HANDLE_TYPE_TERMINAL = 0; |
| 8 const int _STDIO_HANDLE_TYPE_PIPE = 1; | 8 const int _STDIO_HANDLE_TYPE_PIPE = 1; |
| 9 const int _STDIO_HANDLE_TYPE_FILE = 2; | 9 const int _STDIO_HANDLE_TYPE_FILE = 2; |
| 10 const int _STDIO_HANDLE_TYPE_SOCKET = 3; | 10 const int _STDIO_HANDLE_TYPE_SOCKET = 3; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 } catch (e) { | 69 } catch (e) { |
| 70 // Only the interface implemented, _sink not available. | 70 // Only the interface implemented, _sink not available. |
| 71 } | 71 } |
| 72 } | 72 } |
| 73 return StdioType.OTHER; | 73 return StdioType.OTHER; |
| 74 } | 74 } |
| 75 | 75 |
| 76 | 76 |
| 77 class _StdIOUtils { | 77 class _StdIOUtils { |
| 78 external static OutputStream _getStdioOutputStream(int fd); | 78 external static IOSink _getStdioOutputStream(int fd); |
| 79 external static InputStream _getStdioInputStream(); | 79 external static Stream<List<int>> _getStdioInputStream(); |
| 80 external static int _socketType(nativeSocket); | 80 external static int _socketType(nativeSocket); |
| 81 } | 81 } |
| OLD | NEW |