| 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 class _WindowsCodePageEncoder { | 448 class _WindowsCodePageEncoder { |
| 449 @patch | 449 @patch |
| 450 static List<int> _encodeString(String string) { | 450 static List<int> _encodeString(String string) { |
| 451 throw new UnsupportedError("_WindowsCodePageEncoder._encodeString"); | 451 throw new UnsupportedError("_WindowsCodePageEncoder._encodeString"); |
| 452 } | 452 } |
| 453 } | 453 } |
| 454 | 454 |
| 455 @patch | 455 @patch |
| 456 class _Filter { | 456 class _Filter { |
| 457 @patch | 457 @patch |
| 458 static _Filter newZLibDeflateFilter(bool gzip, int level, | 458 static _Filter _newZLibDeflateFilter(bool gzip, int level, |
| 459 int windowBits, int memLevel, | 459 int windowBits, int memLevel, |
| 460 int strategy, | 460 int strategy, |
| 461 List<int> dictionary, bool raw) { | 461 List<int> dictionary, bool raw) { |
| 462 throw new UnsupportedError("newZLibDeflateFilter"); | 462 throw new UnsupportedError("_newZLibDeflateFilter"); |
| 463 } | 463 } |
| 464 @patch | 464 @patch |
| 465 static _Filter newZLibInflateFilter(int windowBits, | 465 static _Filter _newZLibInflateFilter(int windowBits, |
| 466 List<int> dictionary, bool raw) { | 466 List<int> dictionary, bool raw) { |
| 467 throw new UnsupportedError("newZLibInflateFilter"); | 467 throw new UnsupportedError("_newZLibInflateFilter"); |
| 468 } | 468 } |
| 469 } | 469 } |
| 470 | 470 |
| 471 @patch | 471 @patch |
| 472 class Stdin { | 472 class Stdin { |
| 473 @patch | 473 @patch |
| 474 int readByteSync() { | 474 int readByteSync() { |
| 475 throw new UnsupportedError("Stdin.readByteSync"); | 475 throw new UnsupportedError("Stdin.readByteSync"); |
| 476 } | 476 } |
| 477 @patch | 477 @patch |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 } | 517 } |
| 518 @patch | 518 @patch |
| 519 static bool get isSupported { | 519 static bool get isSupported { |
| 520 throw new UnsupportedError("_FileSystemWatcher.isSupported"); | 520 throw new UnsupportedError("_FileSystemWatcher.isSupported"); |
| 521 } | 521 } |
| 522 } | 522 } |
| 523 | 523 |
| 524 @patch | 524 @patch |
| 525 class _IOService { | 525 class _IOService { |
| 526 @patch | 526 @patch |
| 527 static Future dispatch(int request, List data) { | 527 static Future _dispatch(int request, List data) { |
| 528 throw new UnsupportedError("_IOService.dispatch"); | 528 throw new UnsupportedError("_IOService._dispatch"); |
| 529 } | 529 } |
| 530 } | 530 } |
| OLD | NEW |