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

Unified Diff: dart/tools/testing/dart/status_file_parser.dart

Issue 23568002: Update checked-in binary to 0.6.21.3_r26639 (M6) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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 | « dart/tools/testing/dart/record_and_replay.dart ('k') | dart/tools/testing/dart/test_progress.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/status_file_parser.dart
diff --git a/dart/tools/testing/dart/status_file_parser.dart b/dart/tools/testing/dart/status_file_parser.dart
index 3c07ff4ceabed2d142c637d55ad05d6414e5cd77..b505799402cc174f08e1f0339d6f9c59714b9cbe 100644
--- a/dart/tools/testing/dart/status_file_parser.dart
+++ b/dart/tools/testing/dart/status_file_parser.dart
@@ -5,6 +5,7 @@
library status_file_parser;
import "dart:async";
+import "dart:convert" show LineSplitter, UTF8;
import "dart:io";
import "status_expression.dart";
@@ -75,8 +76,8 @@ void ReadConfigurationInto(path, sections, onDone) {
}
Stream<String> lines =
file.openRead()
- .transform(new StringDecoder())
- .transform(new LineTransformer());
+ .transform(UTF8.decoder)
+ .transform(new LineSplitter());
Section current = new Section.always();
sections.add(current);
« no previous file with comments | « dart/tools/testing/dart/record_and_replay.dart ('k') | dart/tools/testing/dart/test_progress.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698