| Index: lib/compiler/implementation/lib/io.dart
|
| diff --git a/lib/compiler/implementation/lib/io.dart b/lib/compiler/implementation/lib/io.dart
|
| index a45be35c9dadea06af9a8616a3a0f6a98c6d72f5..c0d2810bc5bb8b7ace15a6b25284ab539e39c952 100644
|
| --- a/lib/compiler/implementation/lib/io.dart
|
| +++ b/lib/compiler/implementation/lib/io.dart
|
| @@ -63,6 +63,9 @@
|
| #source('../../../../runtime/bin/stream_util.dart');
|
| #source('../../../../runtime/bin/string_stream.dart');
|
| #source('../../../../runtime/bin/timer_impl.dart');
|
| +#source('../../../../runtime/bin/tls_socket.dart');
|
| +// Uses native keyword.
|
| +// #source('../../../../runtime/bin/tls_socket_impl.dart');
|
| #source('../../../../runtime/bin/websocket.dart');
|
| #source('../../../../runtime/bin/websocket_impl.dart');
|
|
|
| @@ -176,3 +179,9 @@ const InputStream stdin = null;
|
| const OutputStream stdout = null;
|
|
|
| const OutputStream stderr = null;
|
| +
|
| +class _TlsSocket {
|
| + factory TlsSocket(String host, int port) {
|
| + throw new UnsupportedOperationException('new TlsSocket($host, $port)');
|
| + }
|
| +}
|
|
|