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

Unified 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: Improve copying of target string on Windows. 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
index 915b2f740620bca2c56f6589046db98c94235d70..11f095765cd24dd97da58fc1f7dcd13978e84dc7 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
@@ -69,6 +69,9 @@ patch class _File {
patch static _createLink(String path, String target) {
throw new UnsupportedError("File._createLink");
}
+ patch static _linkTarget(String path) {
+ throw new UnsupportedError("File._linkTarget");
+ }
patch static _delete(String path) {
throw new UnsupportedError("File._delete");
}

Powered by Google App Engine
This is Rietveld 408576698