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

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

Issue 12812010: dart:io | Add Link.targetSync on all platforms. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix memory leak. Improve OS error for Link.target of a non-link. Created 7 years, 9 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
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
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698