Title: [189154] trunk/Source/_javascript_Core
Revision
189154
Author
[email protected]
Date
2015-08-29 19:07:42 -0700 (Sat, 29 Aug 2015)

Log Message

Unreviewed, fix PropertyName::isNull() that was introduced in r188994.

The condition was reversed.

* runtime/PropertyName.h:
(JSC::PropertyName::isNull):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (189153 => 189154)


--- trunk/Source/_javascript_Core/ChangeLog	2015-08-29 16:47:50 UTC (rev 189153)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-08-30 02:07:42 UTC (rev 189154)
@@ -1,3 +1,12 @@
+2015-08-29  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix PropertyName::isNull() that was introduced in r188994.
+
+        The condition was reversed.
+
+        * runtime/PropertyName.h:
+        (JSC::PropertyName::isNull):
+
 2015-08-28  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r189136.

Modified: trunk/Source/_javascript_Core/runtime/PropertyName.h (189153 => 189154)


--- trunk/Source/_javascript_Core/runtime/PropertyName.h	2015-08-29 16:47:50 UTC (rev 189153)
+++ trunk/Source/_javascript_Core/runtime/PropertyName.h	2015-08-30 02:07:42 UTC (rev 189154)
@@ -51,7 +51,7 @@
         ASSERT(m_impl->isSymbol());
     }
 
-    bool isNull() const { return m_impl; }
+    bool isNull() const { return !m_impl; }
 
     bool isSymbol()
     {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to