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

Unified Diff: lib/html/src/native_DOMPublic.dart

Issue 11235029: Get rid of ===/!===. (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
Index: lib/html/src/native_DOMPublic.dart
diff --git a/lib/html/src/native_DOMPublic.dart b/lib/html/src/native_DOMPublic.dart
index 9046cb3475ef4fb66c9d5738ed49190c2d87606c..e06633f5ee5b19afa62e2d10772cc6c910c6a4fe 100644
--- a/lib/html/src/native_DOMPublic.dart
+++ b/lib/html/src/native_DOMPublic.dart
@@ -11,7 +11,7 @@ spawnDomFunction(Function topLevelFunction) => _Utils.spawnDomFunctionImpl(topLe
var _testRunner;
TestRunner get testRunner {
- if (_testRunner === null)
+ if (_testRunner == null)
_testRunner = new TestRunner._(_NPObject.retrieve("testRunner"));
return _testRunner;
}
« no previous file with comments | « lib/html/src/dart2js_DOMImplementation.dart ('k') | lib/html/templates/html/dartium/html_dartium.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698