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

Unified Diff: sdk/lib/_internal/dartdoc/test/dartdoc_test.dart

Issue 19500013: Use path package in dartdoc (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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/_internal/dartdoc/test/dartdoc_test.dart
===================================================================
--- sdk/lib/_internal/dartdoc/test/dartdoc_test.dart (revision 25250)
+++ sdk/lib/_internal/dartdoc/test/dartdoc_test.dart (working copy)
@@ -238,7 +238,7 @@
// Turn relative libraryPaths to absolute ones.
runArgs.addAll(libraryPaths
- .map((e) => path.join(dd.scriptDir.toNativePath(), e)));
+ .map((e) => path.join(path.absolute(dd.scriptDir), e)));
return Process.run(dartBin, runArgs);
}

Powered by Google App Engine
This is Rietveld 408576698