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

Unified Diff: samples/third_party/dromaeo/Suites.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. 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
« no previous file with comments | « samples/swarm/swarm_ui_lib/view/view.dart ('k') | samples/third_party/dromaeo/common/JSON.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/third_party/dromaeo/Suites.dart
diff --git a/samples/third_party/dromaeo/Suites.dart b/samples/third_party/dromaeo/Suites.dart
index 8af8ea1f4ec4d970ff8a9fc1d183ed1378655f31..1e236b49da91bcee64d3aab8c11515543629b534 100644
--- a/samples/third_party/dromaeo/Suites.dart
+++ b/samples/third_party/dromaeo/Suites.dart
@@ -92,7 +92,7 @@ class Suites {
static var _SUITE_DESCRIPTIONS;
static List<SuiteDescription> get SUITE_DESCRIPTIONS {
- if (null !== _SUITE_DESCRIPTIONS) {
+ if (_SUITE_DESCRIPTIONS != null) {
return _SUITE_DESCRIPTIONS;
}
_SUITE_DESCRIPTIONS = <SuiteDescription>[];
@@ -113,7 +113,7 @@ class Suites {
combined.add(lib);
lib = ':$lib';
}
- final name = null === variant
+ final name = (variant == null)
? suite.name
: '${suite.name} ($platform$lib)';
_SUITE_DESCRIPTIONS.add(new SuiteDescription(
« no previous file with comments | « samples/swarm/swarm_ui_lib/view/view.dart ('k') | samples/third_party/dromaeo/common/JSON.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698