| Index: sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| diff --git a/sdk/lib/_internal/compiler/js_lib/io_patch.dart b/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| index 7071fbc15b836161248402d6540faa2317bb4341..b6400f3c69350ea57f4f9f39f6fdc8cd208df3e5 100644
|
| --- a/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| +++ b/sdk/lib/_internal/compiler/js_lib/io_patch.dart
|
| @@ -455,16 +455,16 @@ class _WindowsCodePageEncoder {
|
| @patch
|
| class _Filter {
|
| @patch
|
| - static _Filter _newZLibDeflateFilter(bool gzip, int level,
|
| - int windowBits, int memLevel,
|
| - int strategy,
|
| - List<int> dictionary, bool raw) {
|
| - throw new UnsupportedError("_newZLibDeflateFilter");
|
| + static _Filter newZLibDeflateFilter(bool gzip, int level,
|
| + int windowBits, int memLevel,
|
| + int strategy,
|
| + List<int> dictionary, bool raw) {
|
| + throw new UnsupportedError("newZLibDeflateFilter");
|
| }
|
| @patch
|
| - static _Filter _newZLibInflateFilter(int windowBits,
|
| - List<int> dictionary, bool raw) {
|
| - throw new UnsupportedError("_newZLibInflateFilter");
|
| + static _Filter newZLibInflateFilter(int windowBits,
|
| + List<int> dictionary, bool raw) {
|
| + throw new UnsupportedError("newZLibInflateFilter");
|
| }
|
| }
|
|
|
| @@ -524,7 +524,7 @@ class _FileSystemWatcher {
|
| @patch
|
| class _IOService {
|
| @patch
|
| - static Future _dispatch(int request, List data) {
|
| - throw new UnsupportedError("_IOService._dispatch");
|
| + static Future dispatch(int request, List data) {
|
| + throw new UnsupportedError("_IOService.dispatch");
|
| }
|
| }
|
|
|