Title: [182921] trunk/Source/_javascript_Core
Revision
182921
Author
benja...@webkit.org
Date
2015-04-16 16:28:21 -0700 (Thu, 16 Apr 2015)

Log Message

Speculative fix after r182915
https://bugs.webkit.org/show_bug.cgi?id=143404

Patch by Geoffrey Garen <gga...@apple.com> on 2015-04-16
Reviewed by Alexey Proskuryakov.

* runtime/SymbolConstructor.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (182920 => 182921)


--- trunk/Source/_javascript_Core/ChangeLog	2015-04-16 23:22:12 UTC (rev 182920)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-04-16 23:28:21 UTC (rev 182921)
@@ -1,3 +1,12 @@
+2015-04-16  Geoffrey Garen  <gga...@apple.com>
+
+        Speculative fix after r182915
+        https://bugs.webkit.org/show_bug.cgi?id=143404
+
+        Reviewed by Alexey Proskuryakov.
+
+        * runtime/SymbolConstructor.h:
+
 2015-04-16  Mark Lam  <mark....@apple.com>
 
         Fixed some typos in a comment.

Modified: trunk/Source/_javascript_Core/runtime/SymbolConstructor.h (182920 => 182921)


--- trunk/Source/_javascript_Core/runtime/SymbolConstructor.h	2015-04-16 23:22:12 UTC (rev 182920)
+++ trunk/Source/_javascript_Core/runtime/SymbolConstructor.h	2015-04-16 23:28:21 UTC (rev 182921)
@@ -37,6 +37,7 @@
 class SymbolConstructor : public InternalFunction {
 public:
     typedef InternalFunction Base;
+    static const unsigned StructureFlags = OverridesGetOwnPropertySlot | Base::StructureFlags;
 
     static SymbolConstructor* create(VM& vm, Structure* structure, SymbolPrototype* prototype)
     {
@@ -55,8 +56,6 @@
 protected:
     void finishCreation(VM&, SymbolPrototype*);
 
-    static const unsigned StructureFlags = OverridesGetOwnPropertySlot | Base::StructureFlags;
-
 private:
     SymbolConstructor(VM&, Structure*);
     static ConstructType getConstructData(JSCell*, ConstructData&);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to