| Index: sdk/lib/io/directory.dart
|
| diff --git a/sdk/lib/io/directory.dart b/sdk/lib/io/directory.dart
|
| index fee6dc9871bf9e5a624e0574cfa5e9160abe084b..e1fb143c1789d3ace7c4eb4ec3c9bcae2bcfb177 100644
|
| --- a/sdk/lib/io/directory.dart
|
| +++ b/sdk/lib/io/directory.dart
|
| @@ -9,6 +9,11 @@ part of dart.io;
|
| */
|
| abstract class Directory implements FileSystemEntity {
|
| /**
|
| + * Gets the path of this directory.
|
| + */
|
| + final String path;
|
| +
|
| + /**
|
| * Creates a directory object. The path is either an absolute path,
|
| * or it is a relative path which is interpreted relative to the directory
|
| * in which the Dart VM was started.
|
| @@ -188,9 +193,4 @@ abstract class Directory implements FileSystemEntity {
|
| * Returns a human readable string for this Directory instance.
|
| */
|
| String toString();
|
| -
|
| - /**
|
| - * Gets the path of this directory.
|
| - */
|
| - final String path;
|
| }
|
|
|