Ignore:
Timestamp:
Apr 28, 2008, 11:22:14 AM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Darin.

Fix run-webkit-tests --threading
and provisionally fix <https://bugs.webkit.org/show_bug.cgi?id=18661>
Proxy server issue in Sunday's Nightly

Changed ClassInfo objects for built-in objects to hold a getter function returning
a per-thread instance. This makes it safe to share these ClassInfo objects between threads -
and these are the only ones that need to be shared.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/JSVariableObject.cpp

    r32609 r32652  
    5454}
    5555
    56 bool JSVariableObject::getPropertyAttributes(const Identifier& propertyName, unsigned& attributes) const
     56bool JSVariableObject::getPropertyAttributes(ExecState* exec, const Identifier& propertyName, unsigned& attributes) const
    5757{
    5858    size_t index = symbolTable().get(propertyName.ustring().rep());
     
    6161        return true;
    6262    }
    63     return JSObject::getPropertyAttributes(propertyName, attributes);
     63    return JSObject::getPropertyAttributes(exec, propertyName, attributes);
    6464}
    6565
Note: See TracChangeset for help on using the changeset viewer.