Chromium Code Reviews| Index: runtime/bin/socket.dart |
| =================================================================== |
| --- runtime/bin/socket.dart (revision 1754) |
| +++ runtime/bin/socket.dart (working copy) |
| @@ -123,7 +123,8 @@ |
| class SocketIOException implements Exception { |
| - const SocketIOException([String this.message = ""]); |
| + const SocketIOException([String message = ""]) |
| + : this.message = message; |
| String toString() => "SocketIOException: $message"; |
| /* |