| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 interface ServerSocket default _ServerSocket { | 5 interface ServerSocket default _ServerSocket { |
| 6 /** | 6 /** |
| 7 * Constructs a new server socket, binds it to a given address and port, | 7 * Constructs a new server socket, binds it to a given address and port, |
| 8 * and listens on it. | 8 * and listens on it. |
| 9 */ | 9 */ |
| 10 ServerSocket(String bindAddress, int port, int backlog); | 10 ServerSocket(String bindAddress, int port, int backlog); |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 OSError this.osError = null]); | 127 OSError this.osError = null]); |
| 128 String toString() { | 128 String toString() { |
| 129 StringBuffer sb = new StringBuffer(); | 129 StringBuffer sb = new StringBuffer(); |
| 130 sb.add("SocketIOException"); | 130 sb.add("SocketIOException"); |
| 131 if (!message.isEmpty()) { | 131 if (!message.isEmpty()) { |
| 132 sb.add(": $message"); | 132 sb.add(": $message"); |
| 133 if (osError != null) { | 133 if (osError != null) { |
| 134 sb.add(" ($osError)"); | 134 sb.add(" ($osError)"); |
| 135 } | 135 } |
| 136 } else if (osError != null) { | 136 } else if (osError != null) { |
| 137 sb.add(": osError"); | 137 sb.add(": $osError"); |
| 138 } | 138 } |
| 139 return sb.toString(); | 139 return sb.toString(); |
| 140 } | 140 } |
| 141 final String message; | 141 final String message; |
| 142 final OSError osError; | 142 final OSError osError; |
| 143 } | 143 } |
| OLD | NEW |