| 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 d2b3e0ff8a83a36362491ce884018dea485fa4de..8fbc6a7e938519f3750af563dc0f4c29600580ee 100644
|
| --- a/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| @@ -359,7 +359,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");
|
| }
|
| }
|
| @@ -370,7 +371,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");
|
| }
|
| }
|
|
|