Ignore:
Timestamp:
Jan 30, 2011, 5:13:10 PM (14 years ago)
Author:
[email protected]
Message:

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

rolling r77006 and r77020 back in.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/API/JSCallbackObjectFunctions.h

    r77044 r77098  
    239239                if (entry->attributes & kJSPropertyAttributeReadOnly)
    240240                    return;
    241                 JSCallbackObject<Base>::putDirect(propertyName, value); // put as override property
     241                JSCallbackObject<Base>::putDirect(exec->globalData(), propertyName, value); // put as override property
    242242                return;
    243243            }
     
    566566                   
    567567                    JSObject* o = new (exec) JSCallbackFunction(exec, asGlobalObject(thisObj->getAnonymousValue(0)), callAsFunction, propertyName);
    568                     thisObj->putDirect(propertyName, o, entry->attributes);
     568                    thisObj->putDirect(exec->globalData(), propertyName, o, entry->attributes);
    569569                    return o;
    570570                }
Note: See TracChangeset for help on using the changeset viewer.