| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 patch class _Directory { | 5 patch class _Directory { |
| 6 patch static _current() { | 6 patch static _current() { |
| 7 throw new UnsupportedError("Directory._current"); | 7 throw new UnsupportedError("Directory._current"); |
| 8 } | 8 } |
| 9 patch static _setCurrent(path) { | 9 patch static _setCurrent(path) { |
| 10 throw new UnsupportedError("Directory_SetCurrent"); | 10 throw new UnsupportedError("Directory_SetCurrent"); |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 throw new UnsupportedError("SecureSocket constructor"); | 286 throw new UnsupportedError("SecureSocket constructor"); |
| 287 } | 287 } |
| 288 | 288 |
| 289 patch static void initialize({String database, | 289 patch static void initialize({String database, |
| 290 String password, | 290 String password, |
| 291 bool useBuiltinRoots: true}) { | 291 bool useBuiltinRoots: true}) { |
| 292 throw new UnsupportedError("SecureSocket.initialize"); | 292 throw new UnsupportedError("SecureSocket.initialize"); |
| 293 } | 293 } |
| 294 } | 294 } |
| 295 | 295 |
| 296 patch class RawDatagramSocket { |
| 297 patch static Future<RawDatagramSocket> bind( |
| 298 host, int port, {bool reuseAddress: true}) { |
| 299 throw new UnsupportedError("RawDatagramSocket.bind"); |
| 300 } |
| 301 } |
| 302 |
| 296 patch class _SecureFilter { | 303 patch class _SecureFilter { |
| 297 patch factory _SecureFilter() { | 304 patch factory _SecureFilter() { |
| 298 throw new UnsupportedError("_SecureFilter._SecureFilter"); | 305 throw new UnsupportedError("_SecureFilter._SecureFilter"); |
| 299 } | 306 } |
| 300 } | 307 } |
| 301 | 308 |
| 302 patch class _StdIOUtils { | 309 patch class _StdIOUtils { |
| 303 patch static Stdin _getStdioInputStream() { | 310 patch static Stdin _getStdioInputStream() { |
| 304 throw new UnsupportedError("StdIOUtils._getStdioInputStream"); | 311 throw new UnsupportedError("StdIOUtils._getStdioInputStream"); |
| 305 } | 312 } |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 patch static bool get isSupported { | 359 patch static bool get isSupported { |
| 353 throw new UnsupportedError("_FileSystemWatcher.isSupported"); | 360 throw new UnsupportedError("_FileSystemWatcher.isSupported"); |
| 354 } | 361 } |
| 355 } | 362 } |
| 356 | 363 |
| 357 patch class _IOService { | 364 patch class _IOService { |
| 358 patch static Future dispatch(int request, List data) { | 365 patch static Future dispatch(int request, List data) { |
| 359 throw new UnsupportedError("_IOService.dispatch"); | 366 throw new UnsupportedError("_IOService.dispatch"); |
| 360 } | 367 } |
| 361 } | 368 } |
| OLD | NEW |