Index: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart |
index f603e87df339088dffde2d1342f72a32fef48637..85bac77908dfcd9b8d48eb6edaa81811573abcc7 100644 |
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart |
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart |
@@ -167,6 +167,18 @@ patch class Socket { |
patch factory Socket(String host, int port) => new _Socket(host, port); |
} |
+patch class TlsSocket { |
+ patch static void setCertificateDatabase(String pkcertDirectory) { |
+ throw new UnsupportedError("TlsSocket.setCertificateDatabase"); |
+ } |
+} |
+ |
+patch class TlsFilter { |
+ patch factory TlsFilter() { |
+ throw new UnsupportedError("TlsFilter.TlsFilter"); |
+ } |
+} |
+ |
patch class _StdIOUtils { |
patch static _getStdioHandle(Socket socket, int num) { |
throw new UnsupportedError("StdIOUtils._getStdioHandle"); |