| 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 import 'dart:_js_helper' show patch; | 5 import 'dart:_js_helper' show patch; |
| 6 | 6 |
| 7 @patch | 7 @patch |
| 8 class _Directory { | 8 class _Directory { |
| 9 @patch | 9 @patch |
| 10 static _current() { | 10 static _current() { |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 } | 505 } |
| 506 @patch | 506 @patch |
| 507 int _terminalLines(int fd) { | 507 int _terminalLines(int fd) { |
| 508 throw new UnsupportedError("Stdout.terminalLines"); | 508 throw new UnsupportedError("Stdout.terminalLines"); |
| 509 } | 509 } |
| 510 } | 510 } |
| 511 | 511 |
| 512 @patch | 512 @patch |
| 513 class _FileSystemWatcher { | 513 class _FileSystemWatcher { |
| 514 @patch | 514 @patch |
| 515 static Stream<FileSystemEvent> watch( | 515 static Stream<FileSystemEvent> _watch( |
| 516 String path, int events, bool recursive) { | 516 String path, int events, bool recursive) { |
| 517 throw new UnsupportedError("_FileSystemWatcher.watch"); | 517 throw new UnsupportedError("_FileSystemWatcher.watch"); |
| 518 } | 518 } |
| 519 @patch | 519 @patch |
| 520 static bool get isSupported { | 520 static bool get isSupported { |
| 521 throw new UnsupportedError("_FileSystemWatcher.isSupported"); | 521 throw new UnsupportedError("_FileSystemWatcher.isSupported"); |
| 522 } | 522 } |
| 523 } | 523 } |
| 524 | 524 |
| 525 @patch | 525 @patch |
| 526 class _IOService { | 526 class _IOService { |
| 527 @patch | 527 @patch |
| 528 static Future _dispatch(int request, List data) { | 528 static Future _dispatch(int request, List data) { |
| 529 throw new UnsupportedError("_IOService._dispatch"); | 529 throw new UnsupportedError("_IOService._dispatch"); |
| 530 } | 530 } |
| 531 } | 531 } |
| OLD | NEW |