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

Unified Diff: tests/standalone/src/EchoServerStreamTest.dart

Issue 9568006: Missing handling of default arguments in socket stream readInto (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 | « runtime/bin/socket_stream_impl.dart ('k') | tests/standalone/src/EchoServerTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/EchoServerStreamTest.dart
diff --git a/tests/standalone/src/EchoServerStreamTest.dart b/tests/standalone/src/EchoServerStreamTest.dart
index e84f19a84a48b5a677d3cd7fef2954f9b9d7d357..03d2472598500bbf33164bab1f1b4ecd62b9abe1 100644
--- a/tests/standalone/src/EchoServerStreamTest.dart
+++ b/tests/standalone/src/EchoServerStreamTest.dart
@@ -9,7 +9,6 @@
// VMOptions=--short_socket_write
// VMOptions=--short_socket_read --short_socket_write
-#library("EchoServerStreamTest");
#import("dart:io");
#import("dart:isolate");
#source("TestingServer.dart");
@@ -140,7 +139,7 @@ class EchoServer extends TestingServer {
static final int MSGSIZE = EchoServerGame.MSGSIZE;
- void connectionHandler(Socket connection) {
+ void onConnection(Socket connection) {
InputStream inputStream;
List<int> buffer = new List<int>(MSGSIZE);
int offset = 0;
« no previous file with comments | « runtime/bin/socket_stream_impl.dart ('k') | tests/standalone/src/EchoServerTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698