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

Unified Diff: tests/standalone/io/string_stream_test.dart

Issue 11348032: Fix issues found by analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « lib/io/input_stream.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/string_stream_test.dart
diff --git a/tests/standalone/io/string_stream_test.dart b/tests/standalone/io/string_stream_test.dart
index ade6c8d695dd43ad64b7709599ae278741ad6fc2..6e7e6a91317fd03b82fa7b136e3cc94197ce6eb0 100644
--- a/tests/standalone/io/string_stream_test.dart
+++ b/tests/standalone/io/string_stream_test.dart
@@ -278,7 +278,7 @@ class ErrorInputStream implements InputStream {
List<int> read([int len]) => null;
int readInto(List<int> buffer, [int offset, int len]) => 0;
int available() => 0;
- void pipe(OutputStream output, [bool close]){ }
+ void pipe(OutputStream output, {bool close: true}){ }
void close() { }
bool get closed => true;
void set onData(void callback()) { }
« no previous file with comments | « lib/io/input_stream.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698