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

Unified Diff: runtime/bin/stdio_patch.dart

Issue 18516002: Add Stdio.readByteSync and Stdio.readLineSync. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add retainNewlines Created 7 years, 6 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
Index: runtime/bin/stdio_patch.dart
diff --git a/runtime/bin/stdio_patch.dart b/runtime/bin/stdio_patch.dart
index 90b3a41fad2b4bfa3fcab92d075771d257634d32..8bc3d677785497abea357ab32262e4bef3a82baa 100644
--- a/runtime/bin/stdio_patch.dart
+++ b/runtime/bin/stdio_patch.dart
@@ -8,9 +8,9 @@ patch class _StdIOUtils {
case _STDIO_HANDLE_TYPE_TERMINAL:
case _STDIO_HANDLE_TYPE_PIPE:
case _STDIO_HANDLE_TYPE_SOCKET:
- return new _StdStream(new _Socket._readPipe(0));
+ return new Stdin._(new _Socket._readPipe(0));
case _STDIO_HANDLE_TYPE_FILE:
- return new _StdStream(new _FileStream.forStdin());
+ return new Stdin._(new _FileStream.forStdin());
default:
throw new FileException("Unsupported stdin type");
}
@@ -39,6 +39,10 @@ patch class _StdIOUtils {
}
}
+patch class Stdin {
+ /* patch */ int readByteSync() native "Stdin_ReadByte";
+}
+
_getStdioHandle(_NativeSocket socket, int num) native "Socket_GetStdioHandle";
_getStdioHandleType(int num) native "File_GetStdioHandleType";
« no previous file with comments | « runtime/bin/stdin.cc ('k') | sdk/lib/io/stdio.dart » ('j') | sdk/lib/io/stdio.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698