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

Unified Diff: utils/pub/validator/compiled_dartdoc.dart

Issue 12253054: Get rid of join() and encapsulate File and Directory in io.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 7 years, 10 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 | « utils/pub/system_cache.dart ('k') | utils/pub/validator/lib.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/validator/compiled_dartdoc.dart
diff --git a/utils/pub/validator/compiled_dartdoc.dart b/utils/pub/validator/compiled_dartdoc.dart
index 20f69be322e1ab26ba77fb68fcc080e7c54fa4c3..2d340ba1e833f9804695f86d07c5e6d77e1d755d 100644
--- a/utils/pub/validator/compiled_dartdoc.dart
+++ b/utils/pub/validator/compiled_dartdoc.dart
@@ -28,10 +28,10 @@ class CompiledDartdocValidator extends Validator {
// Look for tell-tale Dartdoc output files all in the same directory.
var files = [
entry,
- join(dir, "index.html"),
- join(dir, "styles.css"),
- join(dir, "dart-logo-small.png"),
- join(dir, "client-live-nav.js")
+ path.join(dir, "index.html"),
+ path.join(dir, "styles.css"),
+ path.join(dir, "dart-logo-small.png"),
+ path.join(dir, "client-live-nav.js")
];
if (files.every((val) => fileExists(val))) {
« no previous file with comments | « utils/pub/system_cache.dart ('k') | utils/pub/validator/lib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698