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

Unified Diff: lib/html/templates/html/dartium/html_dartium.darttemplate

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/templates/html/dartium/html_dartium.darttemplate
diff --git a/lib/html/templates/html/dartium/html_dartium.darttemplate b/lib/html/templates/html/dartium/html_dartium.darttemplate
index f94862362790d6c729aa167a56e520c2912584d7..70d2ddb10f32b49c3e7f6d44adb32628273a0b30 100644
--- a/lib/html/templates/html/dartium/html_dartium.darttemplate
+++ b/lib/html/templates/html/dartium/html_dartium.darttemplate
@@ -38,7 +38,7 @@ $!GENERATED_DART_FILES
LocalWindow __window;
LocalWindow get window {
- if (__window !== null) {
+ if (__window != null) {
return __window;
}
__window = _Utils.window();
@@ -50,7 +50,7 @@ LocalWindow get _window native "Utils_window";
Document __document;
Document get document {
- if (__document !== null) {
+ if (__document != null) {
return __document;
}
__document = _document;
« no previous file with comments | « lib/html/src/native_DOMPublic.dart ('k') | lib/html/templates/html/impl/impl_CSSStyleDeclaration.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698