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

Unified Diff: pkg/glob/lib/src/utils.dart

Issue 598103003: Fix pkg/glob tests on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « no previous file | pkg/glob/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/glob/lib/src/utils.dart
diff --git a/pkg/glob/lib/src/utils.dart b/pkg/glob/lib/src/utils.dart
index 40ac5a6e8e6467be9be729a5a2b80dd464a981d4..35526c0860556ce2b7340d29ab9d74ae675c5428 100644
--- a/pkg/glob/lib/src/utils.dart
+++ b/pkg/glob/lib/src/utils.dart
@@ -65,6 +65,6 @@ String regExpQuote(String contents) =>
///
/// This is useful when converting from Windows paths to globs.
String separatorToForwardSlash(String path) {
- if (p.context != p.Style.windows) return path;
+ if (p.style != p.Style.windows) return path;
return path.replaceAll('\\', '/');
}
« no previous file with comments | « no previous file | pkg/glob/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698