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

Unified Diff: lib/html.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 | « CHANGELOG.md ('k') | lib/io.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html.dart
diff --git a/lib/html.dart b/lib/html.dart
index 9d0b070150753daf8246285bd6946beec7747107..65404c760998b3c60d0d6809c068d1876a0a52f5 100644
--- a/lib/html.dart
+++ b/lib/html.dart
@@ -115,8 +115,8 @@ class _HtmlWebSocketSink extends DelegatingStreamSink implements WebSocketSink {
final HtmlWebSocketChannel _channel;
_HtmlWebSocketSink(HtmlWebSocketChannel channel)
- : super(channel._controller.foreign.sink),
- _channel = channel;
+ : _channel = channel,
+ super(channel._controller.foreign.sink);
Future close([int closeCode, String closeReason]) {
_channel._localCloseCode = closeCode;
« no previous file with comments | « CHANGELOG.md ('k') | lib/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698