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

Unified Diff: tools/html_json_doc/test/html_json_doc_test.dart

Issue 11878015: Default constructor for dart:io Path now handles native Windows paths. Path() now does the same as… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't change tools/version.dart until the binaries are updated. Created 7 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
« no previous file with comments | « tools/html_json_doc/lib/json_to_html.dart ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/html_json_doc/test/html_json_doc_test.dart
diff --git a/tools/html_json_doc/test/html_json_doc_test.dart b/tools/html_json_doc/test/html_json_doc_test.dart
index 4d721dcc9fd2db7720105978c5d1d98f1ececec9..352d2aa8b7e78d9cf9e927abb10509ead250b36c 100644
--- a/tools/html_json_doc/test/html_json_doc_test.dart
+++ b/tools/html_json_doc/test/html_json_doc_test.dart
@@ -81,7 +81,7 @@ Future _copyFiles(Path fromDir, Path toDir) {
final lister = htmlDir.list(recursive: false);
lister.onFile = (String path) {
- final name = new Path.fromNative(path).filename;
+ final name = new Path(path).filename;
// Ignore private classes.
if (name.startsWith('_')) return;
@@ -100,4 +100,4 @@ Future _copyFiles(Path fromDir, Path toDir) {
completer.complete(null);
};
return completer.future;
-}
+}
« no previous file with comments | « tools/html_json_doc/lib/json_to_html.dart ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698