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

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

Issue 106513005: Work around a VM crash, with Stdout. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « no previous file | 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 ea0a382565c7bbc179ffd5f512e8bbd607a86f80..5626d84f460d39a513a164a84699c77ec3480a73 100644
--- a/sdk/lib/io/stdio.dart
+++ b/sdk/lib/io/stdio.dart
@@ -164,7 +164,8 @@ class Stdin extends _StdStream implements Stream<List<int>> {
*
* Use [hasTerminal] to test if there is a terminal associated to stdout.
*/
-class Stdout extends _StdSink implements IOSink {
+class Stdout extends _StdSink {
+ // TODO(15721): Should implement IOSink (for documentation purpose).
Stdout._(IOSink sink) : super(sink);
/**
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698