Changeset 167313 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Apr 15, 2014, 10:46:42 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r167199 r167313 2669 2669 return exec->vm().throwException(exec, createTypeError(exec, message)); 2670 2670 } 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 2684 2672 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.