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

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

Issue 11343008: Land update to tools directory with new binaries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « tools/testing/dart/status_expression.dart ('k') | tools/testing/dart/test_options.dart » ('j') | 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 ef0f81914dd7f5c2c944372f8612d37203f0b50e..c3b70d8cca6496b726e221fd52fbf9454d808bb8 100644
--- a/tools/testing/dart/status_file_parser.dart
+++ b/tools/testing/dart/status_file_parser.dart
@@ -77,7 +77,7 @@ void ReadConfigurationInto(path, sections, onDone) {
Match match = StripComment.firstMatch(line);
line = (match == null) ? "" : match[0];
line = line.trim();
- if (line.isEmpty()) continue;
+ if (line.isEmpty) continue;
match = HeaderPattern.firstMatch(line);
if (match != null) {
@@ -177,7 +177,7 @@ class TestExpectations {
// If no expectations were found the expectation is that the test
// passes.
- if (result.isEmpty()) {
+ if (result.isEmpty) {
result.add(PASS);
}
return result;
« no previous file with comments | « tools/testing/dart/status_expression.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698