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. |