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

Unified Diff: utils/pub/io.dart

Issue 12995008: Work around issue 9360. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index 5694abb8c1e87f3af7f5697291734930db905fce..db7167f176eb8d3a0cc9e44c300b74da6d1cbc56 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -20,7 +20,9 @@ import 'utils.dart';
export '../../pkg/http/lib/http.dart' show ByteStream;
-final NEWLINE_PATTERN = new RegExp("\r\n?|\n\r?");
+// TODO(nweiz): Replace this with `new RegExp("\r\n?|\n\r?")` when issue 9360 is
+// fixed.
Bob Nystrom 2013/03/22 15:06:55 Will this break code on Windows? I thought we had
nweiz 2013/03/22 18:31:03 Hmm, I guess we do use it to split process output.
+final NEWLINE_PATTERN = "\n";
/// Returns whether or not [entry] is nested somewhere within [dir]. This just
/// performs a path comparison; it doesn't look at the actual filesystem.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698