Ignore:
Timestamp:
Jan 31, 2011, 12:07:21 PM (14 years ago)
Author:
[email protected]
Message:

2011-01-31 Oliver Hunt <[email protected]>

Convert markstack to a slot visitor API
https://bugs.webkit.org/show_bug.cgi?id=53219

rolling r77098, r77099, r77100, r77109, and
r77111 back in, along with a few more Qt fix attempts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/PutPropertySlot.h

    r77113 r77151  
    4646        }
    4747
    48         void setExistingProperty(JSObject* base, size_t offset)
     48        void setExistingProperty(DeprecatedPtr<JSObject> base, size_t offset)
    4949        {
    5050            m_type = ExistingProperty;
     
    5353        }
    5454
    55         void setNewProperty(JSObject* base, size_t offset)
     55        void setNewProperty(DeprecatedPtr<JSObject> base, size_t offset)
    5656        {
    5757            m_type = NewProperty;
     
    6161
    6262        Type type() const { return m_type; }
    63         JSObject* base() const { return m_base; }
     63        JSObject* base() const { return m_base.get(); }
    6464
    6565        bool isStrictMode() const { return m_isStrictMode; }
     
    7171    private:
    7272        Type m_type;
    73         JSObject* m_base;
     73        DeprecatedPtr<JSObject> m_base;
    7474        size_t m_offset;
    7575        bool m_isStrictMode;
Note: See TracChangeset for help on using the changeset viewer.