| 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 _BufferUtils { | 5 patch class _BufferUtils { |
| 6 patch static bool _isBuiltinList(List buffer) { | 6 patch static bool _isBuiltinList(List buffer) { |
| 7 throw new UnsupportedError("_isBuiltinList"); | 7 throw new UnsupportedError("_isBuiltinList"); |
| 8 } | 8 } |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 patch class _File { | 62 patch class _File { |
| 63 patch static _exists(String path) { | 63 patch static _exists(String path) { |
| 64 throw new UnsupportedError("File._exists"); | 64 throw new UnsupportedError("File._exists"); |
| 65 } | 65 } |
| 66 patch static _create(String path) { | 66 patch static _create(String path) { |
| 67 throw new UnsupportedError("File._create"); | 67 throw new UnsupportedError("File._create"); |
| 68 } | 68 } |
| 69 patch static _createLink(String path, String target) { | 69 patch static _createLink(String path, String target) { |
| 70 throw new UnsupportedError("File._createLink"); | 70 throw new UnsupportedError("File._createLink"); |
| 71 } | 71 } |
| 72 patch static _linkTarget(String path) { |
| 73 throw new UnsupportedError("File._linkTarget"); |
| 74 } |
| 72 patch static _delete(String path) { | 75 patch static _delete(String path) { |
| 73 throw new UnsupportedError("File._delete"); | 76 throw new UnsupportedError("File._delete"); |
| 74 } | 77 } |
| 75 patch static _directory(String path) { | 78 patch static _directory(String path) { |
| 76 throw new UnsupportedError("File._directory"); | 79 throw new UnsupportedError("File._directory"); |
| 77 } | 80 } |
| 78 patch static _lengthFromPath(String path) { | 81 patch static _lengthFromPath(String path) { |
| 79 throw new UnsupportedError("File._lengthFromPath"); | 82 throw new UnsupportedError("File._lengthFromPath"); |
| 80 } | 83 } |
| 81 patch static _lastModified(String path) { | 84 patch static _lastModified(String path) { |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 } | 249 } |
| 247 | 250 |
| 248 patch class _Filter { | 251 patch class _Filter { |
| 249 patch static _Filter newZLibDeflateFilter(bool gzip, int level) { | 252 patch static _Filter newZLibDeflateFilter(bool gzip, int level) { |
| 250 throw new UnsupportedError("newZLibDeflateFilter"); | 253 throw new UnsupportedError("newZLibDeflateFilter"); |
| 251 } | 254 } |
| 252 patch static _Filter newZLibInflateFilter() { | 255 patch static _Filter newZLibInflateFilter() { |
| 253 throw new UnsupportedError("newZLibInflateFilter"); | 256 throw new UnsupportedError("newZLibInflateFilter"); |
| 254 } | 257 } |
| 255 } | 258 } |
| OLD | NEW |