Changeset 182921 in webkit


Ignore:
Timestamp:
Apr 16, 2015 4:28:21 PM (9 years ago)
Author:
benjamin@webkit.org
Message:

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

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

  • runtime/SymbolConstructor.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r182919 r182921  
     12015-04-16  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Speculative fix after r182915
     4        https://bugs.webkit.org/show_bug.cgi?id=143404
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * runtime/SymbolConstructor.h:
     9
    1102015-04-16  Mark Lam  <mark.lam@apple.com>
    211
  • trunk/Source/JavaScriptCore/runtime/SymbolConstructor.h

    r182915 r182921  
    3838public:
    3939    typedef InternalFunction Base;
     40    static const unsigned StructureFlags = OverridesGetOwnPropertySlot | Base::StructureFlags;
    4041
    4142    static SymbolConstructor* create(VM& vm, Structure* structure, SymbolPrototype* prototype)
     
    5657    void finishCreation(VM&, SymbolPrototype*);
    5758
    58     static const unsigned StructureFlags = OverridesGetOwnPropertySlot | Base::StructureFlags;
    59 
    6059private:
    6160    SymbolConstructor(VM&, Structure*);
Note: See TracChangeset for help on using the changeset viewer.