| Index: dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart b/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| index dace4db5fd35b3da601c4be0e61ce7fd447454db..10996a67e819be507fd83cca0c49b1f2d33d8a28 100644
|
| --- a/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| @@ -353,7 +353,8 @@ class RawServerSocket {
|
| static Future<RawServerSocket> bind(address,
|
| int port,
|
| {int backlog: 0,
|
| - bool v6Only: false}) {
|
| + bool v6Only: false,
|
| + bool shared: false}) {
|
| throw new UnsupportedError("RawServerSocket.bind");
|
| }
|
| }
|
| @@ -364,7 +365,8 @@ class ServerSocket {
|
| static Future<ServerSocket> bind(address,
|
| int port,
|
| {int backlog: 0,
|
| - bool v6Only: false}) {
|
| + bool v6Only: false,
|
| + bool shared: false}) {
|
| throw new UnsupportedError("ServerSocket.bind");
|
| }
|
| }
|
|
|