| 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 |
| 11 patch class _Directory { | 11 patch class _Directory { |
| 12 patch static String _current() { | 12 patch static String _current() { |
| 13 throw new UnsupportedError("Directory._current"); | 13 throw new UnsupportedError("Directory._current"); |
| 14 } | 14 } |
| 15 patch static _setCurrent(String path) { | 15 patch static _setCurrent(path) { |
| 16 throw new UnsupportedError("Directory_SetCurrent"); | 16 throw new UnsupportedError("Directory_SetCurrent"); |
| 17 } | 17 } |
| 18 patch static _createTemp(String template) { | 18 patch static _createTemp(String template) { |
| 19 throw new UnsupportedError("Directory._createTemp"); | 19 throw new UnsupportedError("Directory._createTemp"); |
| 20 } | 20 } |
| 21 patch static int _exists(String path) { | 21 patch static int _exists(String path) { |
| 22 throw new UnsupportedError("Directory._exists"); | 22 throw new UnsupportedError("Directory._exists"); |
| 23 } | 23 } |
| 24 patch static _create(String path) { | 24 patch static _create(String path) { |
| 25 throw new UnsupportedError("Directory._create"); | 25 throw new UnsupportedError("Directory._create"); |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 } | 271 } |
| 272 | 272 |
| 273 patch class _Filter { | 273 patch class _Filter { |
| 274 patch static _Filter newZLibDeflateFilter(bool gzip, int level) { | 274 patch static _Filter newZLibDeflateFilter(bool gzip, int level) { |
| 275 throw new UnsupportedError("newZLibDeflateFilter"); | 275 throw new UnsupportedError("newZLibDeflateFilter"); |
| 276 } | 276 } |
| 277 patch static _Filter newZLibInflateFilter() { | 277 patch static _Filter newZLibInflateFilter() { |
| 278 throw new UnsupportedError("newZLibInflateFilter"); | 278 throw new UnsupportedError("newZLibInflateFilter"); |
| 279 } | 279 } |
| 280 } | 280 } |
| OLD | NEW |