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

Unified Diff: sdk/lib/io/stdio.dart

Issue 18532002: Fix Stdio->Stdin typo and missing external. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « sdk/lib/_internal/lib/io_patch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/stdio.dart
diff --git a/sdk/lib/io/stdio.dart b/sdk/lib/io/stdio.dart
index ee8569c0148442282e7772fbfcb3941727d6544c..31a5c003bb9e82d88ac9cc19585583c35e1d7196 100644
--- a/sdk/lib/io/stdio.dart
+++ b/sdk/lib/io/stdio.dart
@@ -103,7 +103,7 @@ class Stdin extends _StdStream {
*
* If at end of file, -1 is returned.
*/
- int readByteSync();
+ external int readByteSync();
}
@@ -198,6 +198,6 @@ StdioType stdioType(object) {
class _StdIOUtils {
external static IOSink _getStdioOutputStream(int fd);
- external static Stdio _getStdioInputStream();
+ external static Stdin _getStdioInputStream();
external static int _socketType(nativeSocket);
}
« no previous file with comments | « sdk/lib/_internal/lib/io_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698