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

Unified Diff: tools/html_json_doc/bin/html_json_doc.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 | « tests/standalone/standalone.status ('k') | tools/html_json_doc/lib/html_to_json.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/html_json_doc/bin/html_json_doc.dart
diff --git a/tools/html_json_doc/bin/html_json_doc.dart b/tools/html_json_doc/bin/html_json_doc.dart
index 7c5b72602592687e244066a5850e0f370870a1cc..c37d302cba9f088bbacdfef25521cd3b2b523db3 100644
--- a/tools/html_json_doc/bin/html_json_doc.dart
+++ b/tools/html_json_doc/bin/html_json_doc.dart
@@ -35,7 +35,7 @@ main() {
'HTML .dart files.'},
callback: (m) => mode = m
);
-
+
final argResults = argParser.parse(args);
if (mode == null) {
@@ -46,8 +46,8 @@ main() {
return;
}
- var htmlPath = new Path.fromNative(argResults.rest[0]);
- var jsonPath = new Path.fromNative(argResults.rest[1]);
+ var htmlPath = new Path(argResults.rest[0]);
+ var jsonPath = new Path(argResults.rest[1]);
var convertFuture;
if (mode == 'html-to-json') {
@@ -66,4 +66,4 @@ void printUsage([String message]) {
print(message);
print(USAGE);
print(argParser.getUsage());
-}
+}
« no previous file with comments | « tests/standalone/standalone.status ('k') | tools/html_json_doc/lib/html_to_json.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698