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

Unified Diff: sdk/lib/_internal/lib/io_patch.dart

Issue 23480093: Recommit add FileSystemEntity.resolveSymbolicLinks (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix assertion failure on Windows Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/file_win.cc ('k') | sdk/lib/io/directory.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/lib/io_patch.dart
diff --git a/sdk/lib/_internal/lib/io_patch.dart b/sdk/lib/_internal/lib/io_patch.dart
index 1837aaf7dab89e1076eb9e206ed651ddbe0cdfb0..b87d04586b9c8804f4924711ad70cfad676d41a9 100644
--- a/sdk/lib/_internal/lib/io_patch.dart
+++ b/sdk/lib/_internal/lib/io_patch.dart
@@ -59,6 +59,9 @@ patch class FileSystemEntity {
patch static _identical(String path1, String path2) {
throw new UnsupportedError("FileSystemEntity._identical");
}
+ patch static _resolveSymbolicLinks(String path) {
+ throw new UnsupportedError("FileSystemEntity._resolveSymbolicLinks");
+ }
}
patch class _File {
@@ -98,9 +101,6 @@ patch class _File {
patch static int _openStdio(int fd) {
throw new UnsupportedError("File._openStdio");
}
- patch static _fullPath(String path) {
- throw new UnsupportedError("File._fullPath");
- }
}
patch class _RandomAccessFile {
« no previous file with comments | « runtime/bin/file_win.cc ('k') | sdk/lib/io/directory.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698