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

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

Issue 8772008: Add line handler to string stream (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 | « tests/standalone/src/StringStreamTest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/status_file_parser.dart
diff --git a/tools/testing/dart/status_file_parser.dart b/tools/testing/dart/status_file_parser.dart
index 80da691d2c8edfb470b5e0a8368373e469e824ed..96e0ee7316b468815cdb5e7e21466d99bc26c22e 100644
--- a/tools/testing/dart/status_file_parser.dart
+++ b/tools/testing/dart/status_file_parser.dart
@@ -41,7 +41,7 @@ String getFilename(String path) =>
String getDirname(String path) =>
new Directory(path).existsSync() ? path : '../$path';
-
+
void ReadTestExpectationsInto(TestExpectations expectations,
String statusFilePath,
environment) {
@@ -67,7 +67,7 @@ void ReadConfigurationInto(path, sections) {
sections.add(current);
String prefix = "";
- String line;
+ String line;
while ((line = lines.readLine()) != null) {
Match match = StripComment.firstMatch(line);
line = (match == null) ? "" : match[0];
« no previous file with comments | « tests/standalone/src/StringStreamTest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698