| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 } | 296 } |
| 297 | 297 |
| 298 patch class _Filter { | 298 patch class _Filter { |
| 299 patch static _Filter newZLibDeflateFilter(bool gzip, int level) { | 299 patch static _Filter newZLibDeflateFilter(bool gzip, int level) { |
| 300 throw new UnsupportedError("newZLibDeflateFilter"); | 300 throw new UnsupportedError("newZLibDeflateFilter"); |
| 301 } | 301 } |
| 302 patch static _Filter newZLibInflateFilter() { | 302 patch static _Filter newZLibInflateFilter() { |
| 303 throw new UnsupportedError("newZLibInflateFilter"); | 303 throw new UnsupportedError("newZLibInflateFilter"); |
| 304 } | 304 } |
| 305 } | 305 } |
| 306 |
| 307 patch class _OptionsImpl { |
| 308 patch String get version { |
| 309 throw new UnsupportedError("_OptionsImpl.version"); |
| 310 } |
| 311 } |
| OLD | NEW |