Ignore:
Timestamp:
Apr 15, 2014, 10:46:42 AM (11 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r167199 and r167251.
https://bugs.webkit.org/show_bug.cgi?id=131678

Caused a DYEBench regression and does not seem to improve perf
on relevant websites (Requested by rniwa on #webkit).

Reverted changesets:

"Rewrite Function.bind as a builtin"
https://bugs.webkit.org/show_bug.cgi?id=131083
http://trac.webkit.org/changeset/167199

"Update test result"
http://trac.webkit.org/changeset/167251

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSObject.cpp

    r167199 r167313  
    26692669    return exec->vm().throwException(exec, createTypeError(exec, message));
    26702670}
    2671    
    2672 void JSObject::putDirectPrototypeProperty(VM& vm, JSValue value, int attributes)
    2673 {
    2674     putDirect(vm, vm.propertyNames->prototype, value, attributes);
    2675     putDirect(vm, vm.propertyNames->prototypeForHasInstancePrivateName, value, attributes);
    2676 }
    2677    
    2678 void JSObject::putDirectPrototypePropertyWithoutTransitions(VM& vm, JSValue value, int attributes)
    2679 {
    2680     putDirectWithoutTransition(vm, vm.propertyNames->prototype, value, attributes);
    2681     putDirectWithoutTransition(vm, vm.propertyNames->prototypeForHasInstancePrivateName, value, attributes);
    2682 }
    2683    
     2671
    26842672} // namespace JSC
Note: See TracChangeset for help on using the changeset viewer.