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

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

Issue 9632019: Fix whitespace, long lines, and "boolean". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix indentation Created 8 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 | 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/multitest.dart
diff --git a/tools/testing/dart/multitest.dart b/tools/testing/dart/multitest.dart
index ab4452137b523d86db5608a39861059c1cf7de63..5dae9c58fae755e008bb02379d1bc120a05d499e 100644
--- a/tools/testing/dart/multitest.dart
+++ b/tools/testing/dart/multitest.dart
@@ -130,7 +130,7 @@ Set<String> _findAllRelativeImports(String topLibrary) {
for (String filename in thisPass) {
File f = new File(filename);
for (String line in f.readAsLinesSync()) {
- Match match = relativeImportRegExp.firstMatch(line);
+ Match match = relativeImportRegExp.firstMatch(line);
if (match != null) {
String relativePath = match.group(3);
if (foundImports.contains(relativePath)) {
@@ -154,7 +154,7 @@ Set<String> _findAllRelativeImports(String topLibrary) {
void DoMultitest(String filename,
String outputDir,
String testDir,
- // TODO(zundel): Are the boolean flags now redundant
+ // TODO(zundel): Are the boolean flags now redundant
// with the 'multitestOutcome' field?
Function doTest(String filename,
bool isNegative,
« no previous file with comments | « no previous file | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698