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

Unified Diff: sdk/lib/io/directory.dart

Issue 124753002: Code cleanup (mostly io lib and some http lib). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head. Created 6 years, 11 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/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;
}

Powered by Google App Engine
This is Rietveld 408576698