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

Unified Diff: lib/io.dart

Issue 1959433002: Fix all strong-mode errors and warnings. (Closed) Base URL: git@github.com:dart-lang/web_socket_channel.git@master
Patch Set: Created 4 years, 7 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/html.dart ('k') | lib/src/channel.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/io.dart
diff --git a/lib/io.dart b/lib/io.dart
index 8c225be2d6a514890d48047812ed44a86956f9b9..8bf087bc695c3a8fc6750aaeb50e7e1c38d53f85 100644
--- a/lib/io.dart
+++ b/lib/io.dart
@@ -85,8 +85,8 @@ class _IOWebSocketSink extends DelegatingStreamSink implements WebSocketSink {
final WebSocket _webSocket;
_IOWebSocketSink(WebSocket webSocket)
- : super(webSocket),
- _webSocket = webSocket;
+ : _webSocket = webSocket,
+ super(webSocket);
Future close([int closeCode, String closeReason]) =>
_webSocket.close(closeCode, closeReason);
« no previous file with comments | « lib/html.dart ('k') | lib/src/channel.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698