| Index: sdk/lib/io/file.dart
|
| diff --git a/sdk/lib/io/file.dart b/sdk/lib/io/file.dart
|
| index d5579ca67dfd78aa50eeedf13761db15907b9963..dfb5b033da01a7900777e708047c5271eede30e9 100644
|
| --- a/sdk/lib/io/file.dart
|
| +++ b/sdk/lib/io/file.dart
|
| @@ -147,14 +147,23 @@ abstract class File implements FileSystemEntity {
|
| /**
|
| * Get the canonical full path corresponding to the file path.
|
| * Returns a [:Future<String>:] that completes with the path.
|
| + *
|
| + * *FullPath is deprecated. Use absolutePath or resolveSymbolicLinks
|
| + * instead. FullPath will be removed the 23rd of September, 2013.*
|
| */
|
| + @deprecated
|
| Future<String> fullPath();
|
|
|
| /**
|
| * Synchronously get the canonical full path corresponding to the file path.
|
| *
|
| * Throws a [FileException] if the operation fails.
|
| + *
|
| + * *FullPathSync is deprecated. Use absolutePathSync or
|
| + * resolveSymbolicLinksSync instead. FullPathSync will be removed
|
| + * the 23rd of September, 2013.*
|
| */
|
| + @deprecated
|
| String fullPathSync();
|
|
|
| /**
|
|
|