Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(582)

Side by Side Diff: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart

Issue 13950018: Fix checked mode errors in previous commit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/bin/directory_patch.dart ('k') | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « runtime/bin/directory_patch.dart ('k') | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698