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

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

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 80chars. Created 8 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
Index: tools/testing/dart/test_options.dart
diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
index 97301ea31884cda2f017b8fdf322cb9c9d0c1cfc..86c97a94f5f38a4d68f70632aabbd67dfa72e79c 100644
--- a/tools/testing/dart/test_options.dart
+++ b/tools/testing/dart/test_options.dart
@@ -544,7 +544,7 @@ Note: currently only implemented for dart2js.''',
} else {
// All runtimes eventually go through this path, after expansion.
var updater = runtimeUpdater(configuration);
- if (updater !== null) {
+ if (updater != null) {
updater.update();
}
}

Powered by Google App Engine
This is Rietveld 408576698