Ignore:
Timestamp:
Jan 30, 2011, 5:13:10 PM (15 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/WebKit/mac/WebView/WebScriptDebugDelegate.mm

    r77044 r77098  
    185185    ScopeChainIterator end = scopeChain->end();
    186186    for (ScopeChainIterator it = scopeChain->begin(); it != end; ++it) {
    187         JSObject* object = *it;
     187        JSObject* object = it->get();
    188188        if (object->isActivationObject())
    189             object = new (scopeChain->globalData) DebuggerActivation(object);
     189            object = new (scopeChain->globalData) DebuggerActivation(*scopeChain->globalData, object);
    190190        [scopes addObject:[self _convertValueToObjcValue:object]];
    191191    }
Note: See TracChangeset for help on using the changeset viewer.