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

Unified Diff: runtime/bin/input_stream.dart

Issue 8989019: Implement list based output stream and add pipe to list based input streams (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments from ager@ Created 9 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 | « runtime/bin/file_impl.dart ('k') | runtime/bin/list_input_stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/input_stream.dart
diff --git a/runtime/bin/input_stream.dart b/runtime/bin/input_stream.dart
index af90ead2c0b43ce4ec2d5b5a6fcb700f06194d2d..0b25895fe42967186457db86f90c2c42d99dee59 100644
--- a/runtime/bin/input_stream.dart
+++ b/runtime/bin/input_stream.dart
@@ -213,6 +213,7 @@ interface ChunkedInputStream factory _ChunkedInputStream {
class StreamException implements Exception {
const StreamException([String this.message = ""]);
+ const StreamException.streamClosed() : message = "Stream closed";
String toString() => "StreamException: $message";
final String message;
}
« no previous file with comments | « runtime/bin/file_impl.dart ('k') | runtime/bin/list_input_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698